Re: Model-driven Django development

2012-01-27 Thread Leandro Ostera Villalva
Here with django you define models in Python code and the framework
autogenerates layers for you to interact with the db. With utilities such
as syncb from manage.py or sqlall you can let the framework create a db or
just show you the sql behind those models you defined.

It's really handy.

El 20 de enero de 2012 19:50, Alec Taylor  escribió:

> At University I've learned various techniques for model-driven
> developments, such as:
> - Class diagrams (generate code)
> - ERD Diagrams (generate db code [e.g. SQL])
>
> Can any of these sorts of—or for that matter, any sort of—model-driven
> development techniques be used for Django?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>


-- 
Regards,

Leandro Ostera,
*BLOG - Check what I'm doing now 
EMAIL - Write me an email 
SHOWCASE - Check my latest projects *

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Model-driven Django development

2012-01-22 Thread Venkatraman S
On Sat, Jan 21, 2012 at 9:20 AM, Alec Taylor  wrote:

> At University I've learned various techniques for model-driven
> developments, such as:
> - Class diagrams (generate code)
> - ERD Diagrams (generate db code [e.g. SQL])
>
> Can any of these sorts of—or for that matter, any sort of—model-driven
> development techniques be used for Django?
>
>
I always prefer handcoding stuff; though there was this project
online(guess it was djangopluggables),
by which you can define your entire project plus models online (web
interface) and the same would generate the
entire project structure along with models etc.

(Google on the project name, i dont remember exactly).

-V

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Model-driven Django development

2012-01-21 Thread Mike Dewhirst

On 21/01/2012 2:50pm, Alec Taylor wrote:

At University I've learned various techniques for model-driven
developments, such as:
- Class diagrams (generate code)
- ERD Diagrams (generate db code [e.g. SQL])


Check out Dia which has a Python script interface and I seem to remember 
someone doing a script to create Django models from the ER or UML 
diagrams. It is a while since I looked at it so I might be leading you 
astray.


Good luck

Mike



Can any of these sorts of—or for that matter, any sort of—model-driven
development techniques be used for Django?



--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Model-driven Django development

2012-01-20 Thread Alec Taylor
At University I've learned various techniques for model-driven
developments, such as:
- Class diagrams (generate code)
- ERD Diagrams (generate db code [e.g. SQL])

Can any of these sorts of—or for that matter, any sort of—model-driven
development techniques be used for Django?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.