我在一个简单的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";