Hello! I'm using Sqlite and I created a simple table named user:
var columnNames = new Array("Userid", "Username", "Password", "Levels");
var columnValues = new Array( "integer", "text", "text", "integer");
I put the next datas into the table (32, mike, mikepass, 15);
There was no fault message when I sent them but when I tried to write out the datas I just got back Username and Password in the correct format Userid and Levels, the number types gave back 0. I tried it with many kind of number and number types but the result was the same. So my problem is I can't hold numbers in my table. What can be the reason?
"Im using the default dbAccess.js code for the connection and for the operations."
↧