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
fix(client): add the ability to switch to other schemas (#267)
* feat(oracle): add the ability to switch to other schemas
* feat(client): fix the queries to query against ALL* tables
* fix(client): fix set search_path query for postgres
* feat(client): add a way to handle the schema in the client side for the oracle databases
* feat(oracle): add a way to build queries based on if the schema flag is present or not
* docs(config): fix a typo in the example config file
* docs(readme): update the readme file to include the use of the schema for the oracle databases
* refactor(client): refactor the oracle client to remove the else statements
* docs(docs): update the documents in the docs directory
if you're using PostgreSQL, you have the option to define the schema you want to work with, the default value is `public`.
155
+
if you're using PostgreSQL or Oracle, you have the option to define the schema you want to work with, the default value is `public` for Postgres, empty for Oracle.
UintVarP(&limit, "limit", "", 100, "Size of the result set from the table content query (should be greater than zero, otherwise the app will error out)")
if you're using PostgreSQL, you have the option to define the schema you want to work with, the default value is `public`.
29
+
if you're using PostgreSQL or Oracle, you have the option to define the schema you want to work with, the default value is `public` for Postgres, empty for Oracle.
if you're using PostgreSQL, you have the option to define the schema you want to work with, the default value is `public`.
161
+
if you're using PostgreSQL or Oracle, you have the option to define the schema you want to work with, the default value is `public` for Postgres, empty for Oracle.
0 commit comments