SQLite Database Create
Posted: Fri May 27, 2016 1:32 am
Hi,
Using iX Developer 2.20 SP1, I need to create a new database file and tables in SQLite. This is what I have used for creating the database but does not work:
string databasefile = "myDB.db";
SQLiteConnection.CreateFile(databasefile);
SQLiteConnection conn = new SQLiteConnection(string.Format("Data Source={0}", databasefile));
Please advise.
Regards, Anton
Using iX Developer 2.20 SP1, I need to create a new database file and tables in SQLite. This is what I have used for creating the database but does not work:
string databasefile = "myDB.db";
SQLiteConnection.CreateFile(databasefile);
SQLiteConnection conn = new SQLiteConnection(string.Format("Data Source={0}", databasefile));
Please advise.
Regards, Anton