1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

*** empty log message ***

This commit is contained in:
Michael Meskes
1999-09-15 08:29:25 +00:00
parent 3f68139373
commit 864e1e9d0e
9 changed files with 23 additions and 10 deletions

View File

@ -48,7 +48,9 @@ exec sql end declare section;
strcpy(msg, "execute insert 1");
sprintf(command, "insert into test(name, amount, letter) values ('db: ''mm''', 1, 'f')");
exec sql execute immediate :command;
sprintf(command, "insert into test(name, amount, letter) values ('db: ''mm''', 2, 't')");
printf("New tuple got OID = %d\n", sqlca.sqlerrd[1]);
sprintf(command, "insert into test(name, amount, letter) values ('db: \\\'mm\\\'', 2, 't')");
exec sql execute immediate :command;
strcpy(msg, "execute insert 2");