Answer the question
In order to leave comments, you need to log in
How to create a DB/table and write data to SQLite react-native+expo?
I have never used sql, so I need help in creating a database of tables, writing data to it and reading from it.
Answer the question
In order to leave comments, you need to log in
DDL command to create a table:
Create table TABLE_SKILLS (
ID integer primary key autoincrement,
NAME text NOT NULL, PROGRESS text DEFAULT '00:00:00' NOT NULL);
Select * From TABLE_SKILLS;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question