As you can see in the query it tries to execute: CREATE TABLE new_info(user-name TEXT,user_mob TEXT,user_email TEXT);
You have -
instead of _
. Just replace user-name
with user_name
.
Check this post to understand how to be able to use hyphen in the table names.
4
solved Whats wrong with my SQLite query?