axe.sqlite question

BlitzMax Forums/BlitzMax Programming/axe.sqlite question

xlsior(Posted 2007) [#1]
I just looked at the Axe.sqlite module, and am finding that it is very thin on documentation.

I was able to succesfully create a table and insert two rows by using this:


rr=SQL_Exec(db,"CREATE TABLE user (username char(50),password char(50))")
'err=SQL_Exec(db,"INSERT INTO 'user' (username,password) VALUES ('bob', 'password')")
'err=SQL_Exec(db,"INSERT INTO 'user' (username,password) values ('joe', 'secret')")



However, when I try to query the database with the following:

err=SQL_Exec(db,"select * from user ")

or even:
err=SQL_Exec(db,"select password from 'user' where username='bob'")


all I get is "Attempt to call uninitialized function pointer" in the output window.

I'm sure this is something very basic, but I have no idea what I'm missing here. Any insight?


skidracer(Posted 2007) [#2]
eek, where did you get axe.sqlite from? try this thread for links to what I think is fully working module


xlsior(Posted 2007) [#3]
eek, where did you get axe.sqlite from?


Um... I don't know. Either you linked it through the forums, or it came in through one of the old syncmods using Axe.

The files on my Pc are dated November 2005.

I'll check out the link, thanks.