Question
<cfstoredproc> call to postgreSQL giving error
Hi,
We are migrating from MSSQLserver to POSTGRESQL database.We are getting column doesn't exists, even thoough column exists in the perticular table.
org.postgresql.util.PSQLException: ERROR: column "exampleid" does not exists
Below is the code snippet for MSSQL server
<cfstoredproc procedure="spexample" datasource="#odbc1#" returncode="Yes">
<cfprocparam type="In" cfsqltype="CF_SQL_INTEGER" dbvarname="@ExampleID" value="#ExampleID#">
<cfprocparam type="Out" cfsqltype="CF_SQL_INTEGER" variable="NewExampleID" dbvarname="@oIdentity" null="No">
</cfstoredproc>
Any changes need to be done for PostgreSQL?
