In a blank application I want to create a temporary table, then insert record into this temporary table.
I get the following debug list:
[I][INDENT]INDENT: CREATE TEMP TABLE “pg_temp_4”.patito (LIKE basura EXCLUDING ALL) ON COMMIT DROP
(postgres7): INSERT INTO “pg_temp_4”.patito ( basid, csiid, basclave, basnombre) VALUES ( 2, 1, 2, ‘DOS’)
Error
pg_query(): Query failed: ERROR: no existe la relaci?n ?pg_temp_4.patito? LINE 2: INSERT INTO “pg_temp_4”.patito ( ^
-1: ERROR: no existe la relaci?n ?pg_temp_4.patito? LINE 2: INSERT INTO “pg_temp_4”.patito ( ^
ADOConnection._Execute(
INSERT INTO “pg_temp_4”.patito (
basid,
csiid,
basclave,
basnombre)
VALUES (
2,
1,
2,
‘DOS’), false) % line 1085, file: adodb.inc.php
[/INDENT][/INDENT][/I]
This indicates that there is no relation “pg_temp_4”.patito but I did not get error creating the table.
This code works fine in plsql