***Resolved**** Unable to Connect to specified Schema using the Connection
In Settings.lgx file we are trying to establish Database Connection using the below. Even though we specified the Custom Schema it is connecting to Public schema by default.
How would we have a Connection connecting to a specified Schema. Even we tried with PostgresSQLSchema and CurrentSchema.
<Connection
CommandTimeOut="600"
ID="sessionDB"
PostgreSQLDatabase="<SESSIONS_DB_NAME>"
PostgreSQLPassword="<SESSIONS_DB_PW>"
PostgreSQLServer="<SESSIONS_DB_HOST>"
PostgreSQLUser="<SESSIONS_DB_USER>"
Schema="<SESSIONS_DB_SCHEMA>"
Type="PostgreSQL"
/>
Comments
1 comment
Were able to get the fix working for connecting to Custom Schema in _Settings.lgx file.
The updated connection:
Please sign in to leave a comment.