For example, this is what iam trying to do:
conn.execute ("insert into ...."
if error then
Response.write("Insert error"
Response.end()
end if
I remember that in PHP with postgres i do something like this:
pg_exec ("insert into..."
or die ("Insert Error"
conn.execute ("insert into ...."
if error then
Response.write("Insert error"
Response.end()
end if
I remember that in PHP with postgres i do something like this:
pg_exec ("insert into..."