Am 14.12.2011 16:00, schrieb jose soares:
sqlalchemy.create_engine("oracle://sfera:[email protected]:1521/shell").connect()

To be sure that the url is parsed correctly (maybe there is a slash in your password or something), check this:

from sqlalchemy.engine.url import make_url
url = make_url("oracle://sfera:[email protected]:1521/shell")
print "driver:", url.drivername
print "user:", url.username
print "pwd:", url.password
print "host:", url.host
print "port:", url.port
print "db:", url.database

-- Christoph

--
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en.

Reply via email to