How to read SQLite format 3?
Posted: Thu May 18, 2017 5:41 pm
I'm try to read a file which seams to be a SQLite format 3 file, abut I can't see any records.
What do I wrong?
What do I wrong?
Code: Select all
UseSQLiteDatabase()
DatabaseFile$ = "/Users/Me/Desktop/MyDatabase"
If OpenDatabase(0, DatabaseFile$, "", "")
Debug DatabaseColumns(0)
Debug DatabaseColumnName(0, 0)
While NextDatabaseRow(0)
Debug GetDatabaseString(0, 0)
Wend
CloseDatabase(0)
Else
Debug "Can't open database !"
EndIf