我是在一个普通的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";