You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some companies distinguish their development environments by using different database schemas, with each deployment always using just one schema. The documentation provides an example of a SET SCHEMA update, but in such cases, it might be more convenient to specify the current schema directly in the connection, similar to how it's possible with JDBC, as shown in the example below:
If this capability already exists in the builder, I would recommend making it more explicit in the development documentation. At present, this is the only reference I've found related to schemas:
Thank you!
The text was updated successfully, but these errors were encountered:
Some companies distinguish their development environments by using different database schemas, with each deployment always using just one schema. The documentation provides an example of a SET SCHEMA update, but in such cases, it might be more convenient to specify the current schema directly in the connection, similar to how it's possible with JDBC, as shown in the example below:
jdbc:db2://<host>:<port>/<database>:currentSchema=<schema>;
If this is not currently possible, I would suggest adding this feature, perhaps with a method such as:
If this capability already exists in the builder, I would recommend making it more explicit in the development documentation. At present, this is the only reference I've found related to schemas:
Thank you!
The text was updated successfully, but these errors were encountered: