How to pass infotable to stored procedure for inserting data in PostgreSQL
Hi,
How can we pass intotable as a parameter to a stored procedure for inserting data in postgreSQL table.
Thanks,
Meghna
Hi,
How can we pass intotable as a parameter to a stored procedure for inserting data in postgreSQL table.
Thanks,
Meghna
Unfortunately we cannot pass infotable parameters to the Database Thing SQL services (see here). You could iterate the infotable into a string that you could pass into a parameter. Just make sure that the parameter in your service is surrounded by <<>> instead of [[ ]]. Something like:
CALL myProcedure(<<paramString>>);
-Nick
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.