Getting the message “ No handlers could be found for logger "sqlalchemy.pool.impl.QueuePool" when I run this script to read from a MSSQL dB The code runs fine and delivers the data, but produces this error.
from sqlalchemy import * import pytds import sqlalchemy_pytds engine = create_engine(params ) from sqlalchemy import * import pytds import sqlalchemy_pytds import getpass p=getpass.getpass() engine = create_engine('mssql+pytds://' + params) con = engine.connect() q = 'SELECT * from table' rs= list(engine.execute(q)) for a in rs: print(a) -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description. --- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to sqlalchemy+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/sqlalchemy/fad17b62-5455-4de4-81ba-6d586e92a9ee%40googlegroups.com.