This commit is contained in:
anon
2024-02-13 19:46:34 +01:00
commit 8d050f3c30
12 changed files with 726 additions and 0 deletions

8
debug/static_insert.sqc Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
signed main(){
EXEC SQL CONNECT TO testdb AS myconnection;
EXEC SQL INSERT INTO a VALUES (10);
return i;
}