Skip to content

Commit 70f8e24

Browse files
authored
Update README.md
1 parent ccb2092 commit 70f8e24

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
## SQLite CREATE TABLE Parser
2-
A parser for SQLite [create table](https://www.sqlite.org/lang_createtable.html) sql statements.
1+
## SQLite CREATE and ALTER TABLE Parser
2+
A parser for SQLite [create table](https://www.sqlite.org/lang_createtable.html) and [alter table](https://www.sqlite.org/lang_altertable.html) sql statements.
33

44
* Extremely fast parser with no memory copy overhead
55
* MIT licensed with no dependencies (just drop the C file into your project)
@@ -52,6 +52,10 @@ sql3column *sql3table_get_column (sql3table *table, size_t index);
5252
size_t sql3table_num_constraints (sql3table *table);
5353
sql3tableconstraint *sql3table_get_constraint (sql3table *table, size_t index);
5454
void sql3table_free (sql3table *table);
55+
sql3statement_type sql3table_type (sql3table *table);
56+
sql3string *sql3table_current_name (sql3table *table);
57+
sql3string *sql3table_new_name (sql3table *table);
58+
5559
5660
// Table constraints
5761
sql3string *sql3table_constraint_name (sql3tableconstraint *tconstraint);

0 commit comments

Comments
 (0)