N
N
Newbie Ivanovich2019-08-20 06:56:35
SQLite
Newbie Ivanovich, 2019-08-20 06:56:35

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

1 answer(s)
A
alekseyHunter, 2019-08-20
@NovichokIvanovich

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);

DML command to write data: DML command to receive data:
Select * From TABLE_SKILLS;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question