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,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"
}