Search Results

-2
votes

Case-insensitive UTF-8 string collation for SQLite (C/C++)

I agree there's no standard C/C++ library function for this, but that might not be the main problem in this posting. From the amount of code posted, it's not obvious if the calls to assert …
-1
votes

UTF usage in C++ code

In internal representation inside the code, you'd better do this for both European and non-European characters: \uNNNN Characters in the range \u0020 to \u007E, and a little bit of …
1
vote

Can I recover international characters mistakenly stored in a varchar field?

The Russian post office did it. Did anyone save the image before it disappeared? http://forums.thedailywtf. …
0
votes

What are the experiences with using unicode in identifiers

I think it is not a good idea to use the entire ANSI character set for identifiers. No matter which ANSI code page you're working in, your ANSI code page includes characters that some other ANSI c …
1
vote

Multi-byte character set in MFC application

For _getmbcp, MSDN says "A return value of 0 indicates that a single byte code page is in use." That sure makes it not very useful. Try one of these: GetUserDefaultLCID GetSystemDefaultLCID GetACP. …
0
votes

Japanese COBOL code on IBM mainframe in Shift-JIS; represented after transfer to a PC how?

Source code is a text file. How is the text file copied? Is the mainframe running Linux with a Samba server? An FTP server? A web server? nfs? What is the client running? Windows explorer? …