Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow identifierQuoteString to be either empty ("") or null or both #490

Open
Allam76 opened this issue Oct 11, 2024 · 0 comments
Open

allow identifierQuoteString to be either empty ("") or null or both #490

Allam76 opened this issue Oct 11, 2024 · 0 comments

Comments

@Allam76
Copy link

Allam76 commented Oct 11, 2024

A jdbc driver can specify a identifier quote string with DatabaseMetaData.getIdentifierQuoteString.

My database does not allow quote strings but expects identifiers to be unquoted uppercase only. So I have the choise to set the quote string as either empty "" or null.

Sqlline allows an empty string in one part of the code:

if (identifierQuoteString.length() > 1) {

and a null in another:
if (identifierQuote == null) {

Please choose one or the other approach. Or maybe both :-) Many thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant