You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-04-28 20:46:05 +02:00
18 lines
696 B
Plaintext
Vendored
18 lines
696 B
Plaintext
Vendored
Base = "/tmp/vnnmoosn.qqb.sqlite";
|
|
Table = "test";
|
|
|
|
ColoumnsStruct = New Structure;
|
|
ColoumnsStruct.Insert("id" , "INTEGER PRIMARY KEY");
|
|
ColoumnsStruct.Insert("name" , "TEXT");
|
|
ColoumnsStruct.Insert("age" , "INTEGER");
|
|
ColoumnsStruct.Insert("salary" , "REAL");
|
|
ColoumnsStruct.Insert("is_active" , "BOOLEAN");
|
|
ColoumnsStruct.Insert("created_at", "DATETIME");
|
|
ColoumnsStruct.Insert("data" , "BLOB");
|
|
|
|
Options = New Structure;
|
|
Options.Insert("table", Table);
|
|
Options.Insert("cols" , ColoumnsStruct);
|
|
Options.Insert("db" , Base);
|
|
|
|
Result = OPI_TestDataRetrieval.ExecuteTestCLI("sqlite", "CreateTable", Options); |