SQLite - International Characters
Posted: Thu Nov 01, 2007 6:17 pm
Hi,
Is there any way to create a field in a table in SQLite that will accept international characters, they always seem to get messed up when I add them.
Im creating the table as follows - am I doing something wrong?
get revOpenDatabase ("sqlite",dbPath,,,,,)
put it into gdbID
revExecuteSQL gDBId, "CREATE TABLE Progress(" & \
"Id INTEGER PRIMARY KEY AUTOINCREMENT" & comma & \
"user TEXT NULL" & comma & \
"field1 TEXT NULL" & comma & \
"field2 TEXT NULL" & comma & \
"notes TEXT NULL)"
It works fine, until you try to insert something other than an international character or trademark symbol etc.
Thanks
Andy
Is there any way to create a field in a table in SQLite that will accept international characters, they always seem to get messed up when I add them.
Im creating the table as follows - am I doing something wrong?
get revOpenDatabase ("sqlite",dbPath,,,,,)
put it into gdbID
revExecuteSQL gDBId, "CREATE TABLE Progress(" & \
"Id INTEGER PRIMARY KEY AUTOINCREMENT" & comma & \
"user TEXT NULL" & comma & \
"field1 TEXT NULL" & comma & \
"field2 TEXT NULL" & comma & \
"notes TEXT NULL)"
It works fine, until you try to insert something other than an international character or trademark symbol etc.
Thanks
Andy