Re: RoR guy

2010-03-19 Thread sebastien requiem
waugust wrote: Hey all, I'm a RoR guy who came over to Django because I like Python more then Ruby. That and Rails is like 70% DSL and Django is alot more Python then DSL. With that being said... welcome 1) What's up with the lack of db schema migration!!?? That's really half-assed. What

[SQL] create a database on the fly

2009-07-16 Thread sebastien requiem
uot;test" >>> cursor.execute("CREATE DATABASE user_%s" % (c.db_name)) 1L Which is GOOD This means that the Quoting is done in my method and not when I use the execute myself ... any idea ? thank you very much ! -- sebastien requiem --~--~-~--~~~---~

Re: [SQL] create a database on the fly

2009-07-16 Thread sebastien requiem
On Thu, Jul 16, 2009 at 4:04 PM, sebastien requiem wrote: > Hi guys, > > > my problem may be python only related but I dare posting here anyway. > > I try to create databases on the fly according to some user input. > After searching on the net, I realized that I ca