Ok, after all the encouragement to look at SQLite, I spent time last night doing some reading on the topic.
Thanks, Chris(H)j, for your post with helpful intro comments.
This first example worked as expected, creating an empty db file.
Thanks, Chris(H)j, for your post with helpful intro comments.
This first example worked as expected, creating an empty db file.
Code:
'Compilable Example: #Compile Exe #Dim All %Unicode = 1 #Include "Win32API.inc" #Include "sqlite3.inc" Function PBMain() As Long Local hSQL As Dword 'handle to database sqlite3_open "sql1.db", hSQL sqlite3_close hSQL End Function
Comment