Create database in WebSQL
问题 Been at this for hours and hours without end debugging why my CREATE TABLE statement failed. Tested it within a MySQL database and it works just fine. But for some reason all my SELECT's can't get my login table like it doesn't exists(The error says). Here is my SQL for creating the table. CREATE TABLE IF NOT EXISTS login( id SMALLINT NOT NULL PRIMARY KEY AUTO_INCREMENT, user_type SMALLINT NOT NULL, user_data text NOT NULL, created_on datetime NOT NULL DEFAULT "0000-00-00 00:00:00" ); I just