Not sure if I am missing something here.
I have connected a MyConnection to sqlite3.dll I now want to craete three tables and connect a unitable to them - I can add the relevant fields to the table and have added "SELECT * FROM Decon" to the tables properties but when I trya nd make the table active I get an error table does not exist. What am I doing wrong?
Once I have craeted and populated my table I will want to save it as an sqlite.db file - how do I go about this?
Thanks.
creating tables in sqlite at design time
To connect to SQLite database you should add TUniConnection and TSQLiteUniProvider to your application. Also you should set the ProviderName property to "SQLite" and the Database property to the path to your .db file. After these actions you can open SQLite database by calling the Open method or setting the Connected property to True.