added persistence

This commit is contained in:
jesus-dayo
2016-08-12 18:44:08 +08:00
parent 74509557a6
commit e479614eaa
23 changed files with 472 additions and 61 deletions
@@ -0,0 +1,9 @@
CREATE TABLE student (
id INTEGER PRIMARY KEY,
name VARCHAR(30),
gender VARCHAR(10),
age INTEGER
);
INSERT INTO student (id,name,gender,age)
VALUES (1,'Bryan', 'Male',20);