David Higgs
Programmer
I would like to be able to Open an SQLite DBF and to copy the contents to a VFP Cursor. I have the following Connection String (but realise that there is much more to it than just that).
The connection string refers to SQLite3 ODBC Driver and a Google Search takes me to:
I've Run sqliteodbc.exe which has created Files in C:\Program Files (x86)\SQLIteODBC Driver.
SQLConn = 1 So it looks like the connection is made?
Any help would be much appreciated.
Regards,
David.
Recreational user of VFP.
Code:
dbName = "My_DB.SQLite"
SqliteConn = "DRIVER=SQLite3 ODBC Driver;Database=My_DB.SQLite;LongNames=0;Timeout=1000;NoTXN=0;SyncPragma=NORMAL;StepAPI=0;"
SQLConn = Sqlstringconnect(SqliteConn)
The connection string refers to SQLite3 ODBC Driver and a Google Search takes me to:
I've Run sqliteodbc.exe which has created Files in C:\Program Files (x86)\SQLIteODBC Driver.
SQLConn = 1 So it looks like the connection is made?
Any help would be much appreciated.
Regards,
David.
Recreational user of VFP.