Code: Select all
$result = pg_update(
$conn, "schema.table",
array(
'thing' => "value"
),
array(
'condition' => "otherthing"
)
);
< /code>
und ich bekomme diese Warnung: < /p>
PHP Warning: pg_update(): ERROR: relation "schema.table.table" does not exist
LINE 1: UPDATE "schema.table"."table...
^
Code: Select all
UPDATE "schema.table"."table" SET "thing"='value' WHERE "condition"='otherthing';