Quote:
Originally Posted by LetsOWN[PL]
The query is good, but not good enough for SQLite though.
This query won't execute, because of NOT NULL attribute, which is assigned for each column in this table (see the CREATE TABLE.. structure).
There are (I guess only those are) 3 possible solutions:- You've to remove NOT NULL attribute from table structure
- You have to assign values in 'INSERT INTO' query FOR EACH column in this table
- Recreate this table structure and assign the default values for each column, so that You won't worry about assigning values for each column in one single query.
Hope You'll fix this problem, for any further questions, just go ahead.
Greetings.
|
I use the table to create default values, and the Insert is correct as I am using it in two different gamemodes and I haven't experienced this problem with them already checked differences but couldn't find out the issue.