Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Hand creating MySQL tables vs. generating them
This is interesting, since I'm both RoR and Django user I use both, RoR fetches the required info from a hand made tables, Django makes them for me with additional goodies based on a simple syntax.
I have to say that I'm no expert on SQL and I have never picked up the language, so I'm bit clumsy when it comes to making databases and using some valid design conventions, so I prefer the Django way of generating the necessary tables with simple script file.
Ofcourse PHP developers might go with the manual creation, but I bet there are some PHP frameworks that generate them.
Is there that much to is that manually making them and writing the syntax is generally considered better than generating it?
I have to say that I'm no expert on SQL and I have never picked up the language, so I'm bit clumsy when it comes to making databases and using some valid design conventions, so I prefer the Django way of generating the necessary tables with simple script file.
Ofcourse PHP developers might go with the manual creation, but I bet there are some PHP frameworks that generate them.
Is there that much to is that manually making them and writing the syntax is generally considered better than generating it?
0
This discussion has been closed.
Comments
3stripe wishes Django wasn't so damn hard to install.
It's really sad that RoR doesn't have a neat little modelling syntax like Django has, usually generation syntax gives you more than database tables, like in the case of Django, you get some validation and django specific helpers (javascript calendars and such).
Altho, I like the RoR way of throwing in a :scaffold to the controller and building my model in the MySQL Front and adding validation to the model, and when I'm done I just take the :scaffold away and start building the intelligence behind the beast.
3stripe wishes Django wasn't so damn hard to install.
Django wasn't that hard to install after I had installed RoR, but now that I had to reinstalll my winnie, Ruby just doesn't want to start working so I have to fiddle with it a bit. But, that is life.