1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include "common.h"
// #define UNICODE
#ifndef _T
#ifdef UNICODE
#define _T(t) L##t
#else
#define _T(t) t
#endif /* UNICODE */
#endif /* _T */
#ifdef WIN32
#define stricmp _stricmp
#else
#define stricmp strcasecmp
#endif
static void
print_utf16_le(const SQLWCHAR *wdt)
{
int i;
unsigned char *ucdt;
for (i = 0; wdt[i]; i++)
{
ucdt = (unsigned char *) &wdt[i];
printf("U+%02X%02X", ucdt[1], ucdt[0]);
}
printf("\n");
fflush(stdout);
}
#include "wchar-char-test-sjis.c"
#include "wchar-char-test-utf8.c"
#include "wchar-char-test-eucjp.c"
enum {
SJIS_TEST
,UTF8_TEST
,EUCJP_TEST
};
int main(int argc, char **argv)
{
int rc, testsw = -1;
HSTMT hstmt = SQL_NULL_HSTMT;
const char *loc, *ptr;
struct {
const char *name;
int id;
} loctbl[] = {
{ "sjis", SJIS_TEST }
,{ "shiftjis", SJIS_TEST }
,{ "932", SJIS_TEST }
,{ "utf-8", UTF8_TEST }
,{ "utf8", UTF8_TEST }
,{ "eucjp", EUCJP_TEST }
};
loc = setlocale(LC_ALL, "");
if (NULL != loc &&
NULL != (ptr = strchr(loc, '.')))
{
int i;
ptr++;
for (i = 0; i < sizeof(loctbl) / sizeof(loctbl[0]); i++)
{
if (stricmp(ptr, loctbl[i].name) == 0)
{
testsw = loctbl[i].id;
break;
}
}
}
if (testsw < 0)
{
printf("Unfortunately this program can't handle this locale\n");
printf("Or you are testing an ansi driver\n");
printf("Anyway bypass this program\n");
printf("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\n");
printf("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\n");
printf("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\n");
exit(0);
}
test_connect_ext("");
rc = SQLAllocHandle(SQL_HANDLE_STMT, conn, &hstmt);
if (!SQL_SUCCEEDED(rc))
{
print_diag("failed to allocate stmt handle", SQL_HANDLE_DBC, conn);
exit(1);
}
switch (testsw)
{
case SJIS_TEST:
printf("SJIS test\n");
fflush(stdout);
rc = sjis_test(hstmt);
break;
case UTF8_TEST:
printf("UTF8 test\n");
fflush(stdout);
rc = utf8_test(hstmt);
break;
case EUCJP_TEST:
printf("EUCJP test\n");
fflush(stdout);
rc = eucjp_test(hstmt);
break;
}
/* Clean up */
test_disconnect();
return 0;
}
|