This commit is contained in:
anon 2024-05-30 14:25:59 +02:00
parent a7aa214137
commit abd0e1962b

11
debug/dynamic_insert.sqc Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
signed main(){
EXEC SQL BEGIN DECLARE SECTION;
int i = 10;
EXEC SQL END DECLARE SECTION;
EXEC SQL CONNECT TO testdb AS myconnection;
EXEC SQL INSERT INTO a VALUES (:i);
return 0;
}