Add Ormin ORM support for BaraDB (Nim client)
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
-- lower case, upper case, and quoted table names
|
||||
create table lower_table (
|
||||
id integer primary key
|
||||
);
|
||||
|
||||
CREATE TABLE UPPER_TABLE (
|
||||
id integer primary key
|
||||
);
|
||||
|
||||
-- std sql quoted table name
|
||||
create table "Quoted Table" (
|
||||
id integer primary key
|
||||
);
|
||||
|
||||
-- sqlite quoted table name
|
||||
create table `Quoted Table2` (
|
||||
id integer primary key
|
||||
);
|
||||
|
||||
create table "UPPER_QUOTED" (
|
||||
id integer primary key
|
||||
);
|
||||
|
||||
create table "A""B" (
|
||||
id integer primary key
|
||||
);
|
||||
Reference in New Issue
Block a user