I can declare engine
object with the invalid username, password or address and get no exception or error:
from sqlalchemy import create_engine
engine = create_engine('mysql://nouser:nopassword@123.456.789')
print engine
it prints likes it is a valid engine object:
Engine(mysql://nouser:***@123.456.789)
What would be a common way to verify (to check) if the engine
object is valid or if it is "connectable" to db?