129 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
184
views
How to use character arrays with Win32 APIs in C++ Builder 12
I am experimenting with C++Builder 12, trying to port some old code from C++Builder 2009.
In that old code, all character strings are defined, for example, like this:
char testString[256]="This ...
0
votes
0
answers
74
views
What charset should I use in SQL loader to load data from MySQL into my Oracle 19c adb?
I used mysqldump to dump the data from a MySQL 8.0 database, which I am moving into my 19c adb.
I am doing this on Oracle Linux.
When I use the file command on the .txt file generated by mysqldump, I ...
0
votes
0
answers
43
views
PHP IMAP functions all corrupt Chinese gbk character set subject
The following are the relevant raw headers downloaded via Thunderbird / Maildir:
X-Mailer: snPFB 81
Subject: [标题]Sword and Soul is online
Date: 2024年7月04日 05:33:41 +0800
Content-Type: text/html;
...
1
vote
2
answers
437
views
Oracle data pump: WE8MSWIN1252 source to AL32UTF8 target
Situation is we receive a handful of data pump "dump files" from external sources on a daily basis. We have no (well, extremely limited) control over the source. Source database is ...
1
vote
1
answer
27
views
Differentiate two Cyrillic strings
When I run a query for this string in SQLite with these entries in Cyrillic in a text field, I only find one.
When I put the two strings in two different cells in Excel and search, it only finds the ...
2
votes
1
answer
174
views
Fix "Incorrect string value" in sql script
I am trying to import a lot of data into a MariaDB table. I generated a large SQL script file which contains a lot of special characters (mainly μ, °, and NBSP).
I would like to run my script to put ...
0
votes
1
answer
78
views
How to Encode ascent character into UTF-8 without losing its representation?
Method:
public static void test() throws IOException {
String input = "ABCÉ Ôpqr"; // charsetName = ISO-8859-1
String utf8String = new String(StandardCharsets.UTF_8....
0
votes
0
answers
1k
views
charater utf8mb3 is not supported by .NET framework
The following message pops up when I start my C# desktop app in VS-2022 and keeps popping up at various other times but the application appears to work notmally otherwise.
Character utf8mb3 is not ...
-2
votes
2
answers
362
views
Delphi 7 under Windows 10
I am talking about Design not Runtime.
Is there a way to fix the Encoding and Character Sets issues? Example of messed up form title in Arabic below. Some French letters such as é show up like this ...
2
votes
1
answer
868
views
Binary data type collation with Characters in MariaDB
I am trying to get a deep understanding about RDBMS, I am learning MariaDB.
Struggling to get the Binary data type and how its collation works.
I understand the binary(n) data type takes n bytes. This ...
0
votes
0
answers
102
views
Regular expressions, Greek characters and the *-quantifier doesn't work (but the +-quantifier does)?
I use this regular expression [\p{Greek}] to match any Greek character. It works as expected and matches the first Greek character on the line. However, I want to match all Greek characters that ...
0
votes
2
answers
551
views
Replace in a string all characters outside the set Windows-1252
Having to maintain old programs written in VB6, I find myself having this issue.
I need to find an efficient way to search a string for all characters OUTSIDE the Windows-1252 set and replace them ...
0
votes
0
answers
78
views
Java SpringFramework HTTPRequest unicode character problem
I'm trying to get the content of an online page through SpringFramework using this procedure
public <T>HttpReply<T> httpRequest(final String uri, final HttpMethod method,
final ...
0
votes
1
answer
328
views
C character coding on windows console
I am having trouble in understanding the character set for printing on the console in for a Windows C programme. I have not found any question answering this directly (if there should be one a link ...
-1
votes
2
answers
1k
views
What type of column for session id in database?
As in the question. What specification should have session id column in database. The type, character set etc.
The requirements are fastest query with stability, but some advantages during read of ...