Re: confused about sql in django

2014-03-05 Thread Robin Lery
Thank you Alex and Tom! Its great to know something new. I think I will stick with django orm for now! Thanks again! On Wed, Mar 5, 2014 at 2:48 AM, Tom Evans wrote: > On Tue, Mar 4, 2014 at 8:08 PM, Robin Lery wrote: > > Hello, > > > > I am really being confused. How to use sql in django? I f

Re: confused about sql in django

2014-03-04 Thread Tom Evans
On Tue, Mar 4, 2014 at 8:08 PM, Robin Lery wrote: > Hello, > > I am really being confused. How to use sql in django? I found two: > 1. Performing raw queries. > 2.Executing custom SQL directly. > > Does it have better performance than the django's orm? And how is the > performance the same between

Re: confused about sql in django

2014-03-04 Thread Alex Mandel
On 03/04/2014 12:08 PM, Robin Lery wrote: > Hello, > > I am really being confused. How to use sql in django? I found two: > 1. Performing raw queries. > 2.Executing custom SQL directly. > Do you have links for those? I know there is a the raw query mode of Django, and I'm guessing the other metho

confused about sql in django

2014-03-04 Thread Robin Lery
Hello, I am really being confused. How to use sql in django? I found two: 1. Performing raw queries. 2.Executing custom SQL directly. Does it have better performance than the django's orm? And how is the performance the same between those two? And lastly, what is sqlalchemy? Are sqlalchemy and d