adding all of our core sql systems

This commit is contained in:
Chris Cochrun 2024-11-12 06:29:24 -06:00
parent 2408404ff4
commit c9225680c3
20 changed files with 1055 additions and 227 deletions

View file

@ -0,0 +1,38 @@
{
"db_name": "SQLite",
"query": "SELECT id as \"id: i32\", title, file_path as \"path\", html from presentations",
"describe": {
"columns": [
{
"name": "id: i32",
"ordinal": 0,
"type_info": "Integer"
},
{
"name": "title",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "path",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "html",
"ordinal": 3,
"type_info": "Bool"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false,
false,
false
]
},
"hash": "7ace613c138f874198ea8e5f72697d4c604fe7b755fdcb6773692c813b5e1d4b"
}

View file

@ -0,0 +1,32 @@
{
"db_name": "SQLite",
"query": "SELECT title as \"title!\", file_path as \"path!\", id as \"id: i32\" from images",
"describe": {
"columns": [
{
"name": "title!",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "path!",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "id: i32",
"ordinal": 2,
"type_info": "Integer"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false,
false
]
},
"hash": "8cc171f2be70148e4178fa23d34887be69527e6fda128b11a6279cd8cf410918"
}

View file

@ -0,0 +1,32 @@
{
"db_name": "SQLite",
"query": "SELECT title as \"title!\", file_path as \"path!\", id as \"id: i32\" from images where id = ?",
"describe": {
"columns": [
{
"name": "title!",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "path!",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "id: i32",
"ordinal": 2,
"type_info": "Integer"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
false
]
},
"hash": "aa01b675a8e40d152144b3b6a11ec9c68244defd5ea85764979535e1b2267496"
}

View file

@ -0,0 +1,50 @@
{
"db_name": "SQLite",
"query": "SELECT title as \"title!\", file_path as \"path!\", start_time as \"start_time!: f32\", end_time as \"end_time!: f32\", loop as \"looping!\", id as \"id: i32\" from videos where id = ?",
"describe": {
"columns": [
{
"name": "title!",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "path!",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "start_time!: f32",
"ordinal": 2,
"type_info": "Null"
},
{
"name": "end_time!: f32",
"ordinal": 3,
"type_info": "Null"
},
{
"name": "looping!",
"ordinal": 4,
"type_info": "Bool"
},
{
"name": "id: i32",
"ordinal": 5,
"type_info": "Integer"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
true,
true,
false,
false
]
},
"hash": "d4b324ece51b3a314367f570bb7f28a36ef703387d3f9eace9f51f102b1ed6da"
}

View file

@ -0,0 +1,50 @@
{
"db_name": "SQLite",
"query": "SELECT title as \"title!\", file_path as \"path!\", start_time as \"start_time!: f32\", end_time as \"end_time!: f32\", loop as \"looping!\", id as \"id: i32\" from videos",
"describe": {
"columns": [
{
"name": "title!",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "path!",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "start_time!: f32",
"ordinal": 2,
"type_info": "Float"
},
{
"name": "end_time!: f32",
"ordinal": 3,
"type_info": "Float"
},
{
"name": "looping!",
"ordinal": 4,
"type_info": "Bool"
},
{
"name": "id: i32",
"ordinal": 5,
"type_info": "Integer"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false,
true,
true,
false,
false
]
},
"hash": "f6c1c41a68b04f939301d6bb897cf79915ef389eedb009daef3be737709266f8"
}