Page 1 of 1

Problems with my sqlite connection and PPL

PostPosted: Jan 17, 2007 @ 4:21pm
by ignacio
Hi,

I´ve some problem when i connect to my database,at begining is normal,i get to open the database and the file exist,but when i execute my query in PPL,i don´t know why but i don´t recieved dates.
...
query$ = "Select * From clientes";
rs$ = SqlExec(db$,query$, data$, row$, column$);
if (rs$ <> SQLITE_OK)
ShowMessage(rs$);
else
ShowMessage ("Error recibiendo los datos");
end;
...
When i executed that rs=1,and the normal it´s rs=0.
My database it´s correct and my query any advice?Thanks