A parser for SQLite create table and alter table sql statements.
- Extremely fast parser with no memory copy overhead
- MIT licensed with no dependencies (just drop the C file into your project)
- Never recurses or allocates more memory than it needs
- Very simple API
SQLite is a very powerful software but it lacks an easy way to extract complete information about tables and columns constraints. This drawback in addition to the lack of full ALTER TABLE support makes alterring a table a very hard task. The built-in sqlite pragmas provide incomplete information and a manual parsing is required in order to extract all the metadata from a table.
PRAGMA table_info(table-name);
PRAGMA foreign_key_list(table-name);
CREATE TABLE syntax diagrams can be found on the official sqlite website.
- A C99 compiler.
- SQL statement must be successfully compiled by SQLite.
In order to extract the original CREATE TABLE sql statement you need to query the sqlite_master table from within an SQLite database:
SELECT sql FROM sqlite_master WHERE name = 'myTable';
then just include sql3parse_table.h and sql3parse_table.c in your project and invoke:
// sql is the CREATE TABLE sql statement
// length is the length of sql (if 0 then strlen will be used)
// error is the returned error code (can be NULL)
// return value: NULL in case of error or an opaque pointer in case of success
sql3table *sql3parse_table (const char *sql, size_t length, sql3error_code *error);
sql3table is an opaque struct that you can introspect using the sql3table* public functions.
// Main Entrypoint
sql3table *sql3parse_table (const char *sql, size_t length, sql3error_code *error);
// Table information
sql3string *sql3table_schema (sql3table *table);
sql3string *sql3table_name (sql3table *table);
sql3string *sql3table_comment (sql3table *table);
bool sql3table_is_temporary (sql3table *table);
bool sql3table_is_ifnotexists (sql3table *table);
bool sql3table_is_withoutrowid (sql3table *table);
size_t sql3table_num_columns (sql3table *table);
sql3column *sql3table_get_column (sql3table *table, size_t index);
size_t sql3table_num_constraints (sql3table *table);
sql3tableconstraint *sql3table_get_constraint (sql3table *table, size_t index);
void sql3table_free (sql3table *table);
sql3statement_type sql3table_type (sql3table *table);
sql3string *sql3table_current_name (sql3table *table);
sql3string *sql3table_new_name (sql3table *table);
// Table constraints
sql3string *sql3table_constraint_name (sql3tableconstraint *tconstraint);
sql3constraint_type sql3table_constraint_type (sql3tableconstraint *tconstraint);
size_t sql3table_constraint_num_idxcolumns (sql3tableconstraint *tconstraint);
sql3idxcolumn *sql3table_constraint_get_idxcolumn (sql3tableconstraint *tconstraint, size_t index);
sql3conflict_clause sql3table_constraint_conflict_clause (sql3tableconstraint *tconstraint);
sql3string *sql3table_constraint_check_expr (sql3tableconstraint *tconstraint);
size_t sql3table_constraint_num_fkcolumns (sql3tableconstraint *tconstraint);
sql3string *sql3table_constraint_get_fkcolumn (sql3tableconstraint *tconstraint, size_t index);
sql3foreignkey *sql3table_constraint_foreignkey_clause (sql3tableconstraint *tconstraint);
// Column constraints
sql3string *sql3column_name (sql3column *column);
sql3string *sql3column_type (sql3column *column);
sql3string *sql3column_length (sql3column *column);
sql3string *sql3column_constraint_name (sql3column *column);
sql3string *sql3column_comment (sql3column *column);
bool sql3column_is_primarykey (sql3column *column);
bool sql3column_is_autoincrement (sql3column *column);
bool sql3column_is_notnull (sql3column *column);
bool sql3column_is_unique (sql3column *column);
sql3order_clause sql3column_pk_order (sql3column *column);
sql3conflict_clause sql3column_pk_conflictclause (sql3column *column);
sql3conflict_clause sql3column_notnull_conflictclause (sql3column *column);
sql3conflict_clause sql3column_unique_conflictclause (sql3column *column);
sql3string *sql3column_check_expr (sql3column *column);
sql3string *sql3column_default_expr (sql3column *column);
sql3string *sql3column_collate_name (sql3column *column);
sql3foreignkey *sql3column_foreignkey_clause (sql3column *column);
// Foreign key
sql3string *sql3foreignkey_table (sql3foreignkey *fk);
size_t sql3foreignkey_num_columns (sql3foreignkey *fk);
sql3string *sql3foreignkey_get_column (sql3foreignkey *fk, size_t index);
sql3fk_action sql3foreignkey_ondelete_action (sql3foreignkey *fk);
sql3fk_action sql3foreignkey_onupdate_action (sql3foreignkey *fk);
sql3string *sql3foreignkey_match (sql3foreignkey *fk);
sql3fk_deftype sql3foreignkey_deferrable (sql3foreignkey *fk);
// Indexed column
sql3string *sql3idxcolumn_name (sql3idxcolumn *idxcolumn);
sql3string *sql3idxcolumn_collate (sql3idxcolumn *idxcolumn);
sql3order_clause sql3idxcolumn_order (sql3idxcolumn *idxcolumn);
// String Utils
const char *sql3string_ptr (sql3string *s, size_t *length);
const char *sql3string_cstring (sql3string *s);
Dump to stdout complete table information:
// all the necessary code is in sql3parse_debug.h/.c
void table_dump (sql3table *table) {
if (!table) return;
// schema name
sql3string *ptr = sql3table_schema(table);
sql3string_dump(ptr, "Schema Name");
// table name
ptr = sql3table_name(table);
sql3string_dump(ptr, "Table Name");
// table comment
ptr = sql3table_comment(table);
if (ptr) sql3string_dump(ptr, "Table Comment");
// table flags
printf("Temporary: %d\n", sql3table_is_temporary(table));
printf("If Not Exists: %d\n", sql3table_is_ifnotexists(table));
printf("Without RowID: %d\n", sql3table_is_withoutrowid(table));
// loop to print complete columns info
size_t num_columns = sql3table_num_columns(table);
printf("Num Columns: %zu\n", num_columns);
for (size_t i=0; i<num_columns; ++i) {
sql3column *column = sql3table_get_column(table, i);
printf("\n== COLUMN %zu ==\n", i);
sql3column_dump(column);
}
// loop to print complete table constraints
size_t num_constraint = sql3table_num_constraints(table);
printf("\nNum Table Constraint: %zu\n", num_constraint);
for (size_t i=0; i<num_constraint; ++i) {
sql3tableconstraint *constraint = sql3table_get_constraint(table, i);
printf("\n== TABLE CONSTRAINT %zu ==\n", i);
sql3tableconstraint_dump(constraint);
}
printf("\n");
}
SQLite supports a limited subset of ALTER TABLE. The ALTER TABLE command in SQLite allows these alterations of an existing table: it can be renamed; a column can be renamed; a column can be added to it; or a column can be dropped from it.
Most SQL database engines store the schema already parsed into various system tables. On those database engines, ALTER TABLE merely has to make modifications to the corresponding system tables. SQLite is different in that it stores the schema in the sqlite_schema table as the original text of the CREATE statements that define the schema. Hence ALTER TABLE needs to revise the text of the CREATE statement. Doing so can be tricky for certain "creative" schema designs.
The only schema altering commands directly supported by SQLite are the "rename table", "rename column", "add column", "drop column" commands shown above. However, applications can make other arbitrary changes to the format of a table using a simple sequence of operations. The steps to make arbitrary changes to the schema design of some table are as follows (to create the new table starting from the old one you need a way to extract complete information from a SQLite table and that's the main reason why I created this parser):
// The following algorithm needs to be revised based on new notes added to https://www.sqlite.org/lang_altertable.html
ALTER TABLE algorithm looks like:
PRAGMA foreign_keys=off;
BEGIN TRANSACTION;
ALTER TABLE old_table RENAME TO temp_table;
/* new_table can be recreated by parsing the old_table and extracting all relevant information using this repo */
CREATE TABLE new_table(
column_definition,
...
);
INSERT INTO new_table (column_list)
SELECT column_list
FROM temp_table;
DROP TABLE temp_table;
COMMIT;
PRAGMA foreign_keys=on;
The parser is blazing fast, mainly because very few memory allocations are performed and no copy operations are used between the sql string and the internal sql3string structs. Memory requirement is linearly proportional to the number of columns in the table.
You can estimate memory usage (on a 64bit system) using the following formula:
N1: number of columns WITHOUT a foreign key constraint
N2: number of columns WITH a foreign key constraint
N3: number of indexed columns in table constraint
K: 0 if no foreign key yable constraint is used or 64
Memory usage (in bytes): 144 + (N1 * 144) + (N2 * 208) + (N3 * 40) + K
This code is actually used by Creo.
If you are interested in my others GitHub projects then take a look at the Gravity programming language.