You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
string db = "user91.db";
if (!sqlite_table_exists (db, "user5556")){
sqlite_exec (db, "CREATE TABLE user5556 (number int,password varchar(255))");
sqlite_exec (db, "INSERT INTO user5556 (number,password) VALUES (1,'123')");
}
else{
sqlite_exec (db,"DELETE FROM user5556");
}
The table will be created when first executed. But the second time executed, unable to delete the data from table as you can see in the else statement.
The text was updated successfully, but these errors were encountered:
}
The table will be created when first executed. But the second time executed, unable to delete the data from table as you can see in the else statement.
The text was updated successfully, but these errors were encountered: