dpgaspar commented on issue #12550:
URL: https://github.com/apache/superset/issues/12550#issuecomment-762115645


   Hi @squalou your example is at the dbapi layer, please test using SQLAlchemy 
with a driver that supports it's dialect:
   
   From the docs (https://github.com/daneshpatel/sqlalchemy-jdbcapi):
   ```
   from sqlalchemy import create_engine
   engine = create_engine('jdbcapi+pgjdbc://{}:{}@{}/{}'.format(username, 
password, <ip:host>', <database name>))
   rows = engine.connect().execute(
       "select * from some_table LIMIT 10"
   )
   print([row for row in rows])
   ```
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to