Click here to Skip to main content
15,898,222 members

Comments by Member 12753057 (Top 4 by date)

Member 12753057 11-May-17 6:58am View    
SQLiteConnection.SQLiteVersion that I using is 3.18.0.
Was not version 3.18.0 released later than version 3.7.0?
Member 12753057 11-May-17 6:58am View    
Deleted
SQLiteConnection.SQLiteVersion that I using is 3.18.0.
Was not version 3.18.0 released later than version 3.7.0?
Member 12753057 11-May-17 3:09am View    
My server version of database is 3.18.0.
Is your 'database version' server version?

I make a database by below code.

using (var cnn = new SQLiteConnection("Data Source= testDB.db; Version=3"))
{
cnn.Open();
cnn.Execute(@"create table testTable ( col1 int )");
}


(+)
I check that "SQLiteConnection.SQLiteVersion" is 3.18.0 too
Member 12753057 10-May-17 20:48pm View    
The SQlite dll file that I using was descripted : (This binary package contains all the binaries for the PocketPC version of the System.Data.SQLite 1.0.105.0 (3.18.0) package. The included native binaries should work on all supported ARM versions of Windows CE prior to Windows Embedded Compact 2013. The .NET Compact Framework 3.5 is required.)

Is that mean the SQLite version include version 3.18.0?

I can't find the other SQLite version that supported Windows CE(.NET Compact framework 3.5)