Replies: 4 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
Thank you, that's great solution
That is interesting because this is output from official sqlite terminal CREATE TABLE Statistics
(
ID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE NOT NULL,
PacketsCount UNSIGNED BIG INT,
FilesCount UNSIGNED BIG INT,
ErrorsCount UNSIGNED BIG INT,
DBConnected BOOLEAN NOT NULL DEFAULT 0
); But You can reproduce this using the following commands: sqlite> .open your_db.sqlite3
sqlite> .output test_dump.sql
sqlite> .dump test_dump
sqlite> .quit What do you think about the possible addition of these aliases? After all, they are also part of the standard |
Beta Was this translation helpful? Give feedback.
-
@pavel-cpp if 'official sqlite terminal' is CREATE TABLE ototo (
id INTEGER PRIMARY KEY NOT NULL,
value ABRAKADABRA); ![]() |
Beta Was this translation helpful? Give feedback.
-
Looks like we got nothing to commit within this issue. I'll convert it to discussion if you don't mind |
Beta Was this translation helpful? Give feedback.
-
It is critically important for me that some of the fields in the database are of these types.
For this script, I use the following model:
But as a result, when calling
sync_schema
I get the following tableHow can I solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions