Hi
When using sqlalchemy directly, I can create a new database TEST like
that:
engine = create_engine('mysql://r...@localhost/tmp echo=False)
metadata = MetaData(bind=engine)
connection = engine.connect()
connection.execute('CREATE DATABASE IF NOT EXISTS TEST')
What is the corrrect way to do that from Elixir ?
Thanks for your help
Peter
--
You received this message because you are subscribed to the Google Groups
"SQLElixir" 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/sqlelixir?hl=en.