We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Current implementation return the colum name instead of the expected column label.
>>> import jaydebeapi >>> conn = jaydebeapi.connect("org.h2.Driver", "jdbc:h2:./test;MV_STORE=FALSE;IFEXISTS=TRUE", ["sa", ""], "h2-1.4.200.jar") >>> curs = conn.cursor() >>> curs.execute("SELECT ID AS RIDER_ID FROM RIDER") >>> curs.description [('ID', DBAPITypeObject('BOOLEAN', 'BIGINT', 'BIT', 'INTEGER', 'SMALLINT', 'TINYINT'), 20, 20, 19, 0, 0)]
While I would expect:
>>> curs.description [('RIDER_ID', DBAPITypeObject('BOOLEAN', 'BIGINT', 'BIT', 'INTEGER', 'SMALLINT', 'TINYINT'), 20, 20, 19, 0, 0)]
The text was updated successfully, but these errors were encountered:
return field label instead of name, which contains any alias instead …
fb883e2
…of the source. Fixes baztian#81 Fixes baztian#169 Signed-off-by: reinvantveer <[email protected]>
Successfully merging a pull request may close this issue.
Current implementation return the colum name instead of the expected column label.
While I would expect:
The text was updated successfully, but these errors were encountered: