C#+ SQLite - 如何在查询中使用这些函数?

时间:2013-08-15 05:20:30

标签: c# sqlite

我在一个简单的WinCE应用程序下编写,该应用程序涉及SQLite。该项目使用System.data.SQLite.dll和SQLite.Interop.080.dll。 所以我正在使用SQLite:

 SQLiteConnection ConnectSQL = new SQLiteConnection("Data Source=D:\1.db");
 ConnectSQL.open();
 SQLiteCommand commandSQL = ConnectSQL.CreateCommand();
 commandSQL.CommandText = "Select Field1 FROM Table1";
 SQLiteDataReader result = commandSQL.ExecuteReader();

如何声明该函数并在sqlite中使用它来编写:

 commandSQL.CommandText = "Select MyFunc(Field1) FROM Table1";

0 个答案:

没有答案