On 12/5/06, Felix Hoffmann <[EMAIL PROTECTED]> wrote:
Questions: (1) Is it correct procedure to use sqlite_open() as the first step, or do I need to perform some sort of memory allocation first?
sqlite_open() is the first step, so that is correct. Documentation is found here: http://www.sqlite.org/capi3ref.html#sqlite3_open, notice the database is marked as an out meaning the library will handle necessary allocation. (2) Is there anyone out there who has used SQLite with TB or another
scripting language without a wrapper/binding? I could use some sample code here.
Can't help on that, sorry.