我想要一些关于将 unicode 字符串插入 SQLite 数据库的 Visual Studio C# 代码的帮助。
下面是我将测试字符串写入数据库的测试代码:
string testStr = "á Á ñ ç é á";
SQLiteConnection mydataConnection = new SQLiteConnection(); // setup new sql connection obj
try
{
//// SQLite DB
mydataConnection.ConnectionString =
"Data Source=C:\\Users\\John\\Desktop\\location.db; Version=3; UseUTF16Encoding=True;Synchronous=Normal;New=False"; // set up the connection string
mydataConnection.Open(); // open the connection to the db
SQLiteCommand myCmd = new SQLiteCommand(); // create a new command object
myCmd.Connection = mydataConnection; // whats its connected to, see above connection string
SQLiteParameterCollection myParameters = myCmd.Parameters; // good pratice to use parameters to pass data to db
myParameters.AddWithValue("@name", testStr); //
myCmd.CommandText = "INSERT INTO location (name) VALUES (@name)";
myCmd.ExecuteNonQuery();
}
catch (SQLiteException d)
{
string myerror = "Database Error" + d;
MessageBox.Show(myerror);
}
finally // good pratice to close db connection in a finally so exceptions dont leave open.
{
mydataConnection.Close();
}
当我查看数据库/表(使用 SQLite 管理员)时,字符串如下所示: á à ñ ç é á
作为测试,我可以使用 SQLite Administrator 将字符串直接复制并粘贴到数据库中,然后保存字符串,然后可以正常查看。
我试过切换“UseUTF16Encoding=True;” 真/假 - 没有区别。
任何想法我做错了什么。