feat(sqlx): add prepared statements

This commit is contained in:
2026-05-10 15:57:12 +02:00
parent 2eebc52f17
commit d738c8aea7
4 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"db_name": "SQLite",
"query": "SELECT * FROM RelayLabels WHERE relay_id = ?1",
"describe": {
"columns": [
{
"name": "relay_id",
"ordinal": 0,
"type_info": "Integer"
},
{
"name": "label",
"ordinal": 1,
"type_info": "Text"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false
]
},
"hash": "15738a0f943596d60a342c973435b94e1b7dc3199ad9fb400db6db349141b560"
}