Home
last modified time | relevance | path

Searched refs:ifnotexists (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dparse.y186 create_table ::= createkw temp(T) TABLE ifnotexists(E) nm(Y) dbnm(Z). { in temp()
191 %type ifnotexists {int}
192 ifnotexists(A) ::= . {A = 0;} in ifnotexists() function
193 ifnotexists(A) ::= IF NOT EXISTS. {A = 1;} in ifnotexists() function
478 cmd ::= createkw(X) temp(T) VIEW ifnotexists(E) nm(Y) dbnm(Z) eidlist_opt(C)
1402 cmd ::= createkw(S) uniqueflag(U) INDEX ifnotexists(NE) nm(X) dbnm(D)
1523 trigger_decl(A) ::= temp(T) TRIGGER ifnotexists(NOERR) nm(B) dbnm(Z)
1703 create_vtab ::= createkw VIRTUAL TABLE ifnotexists(E)