On 12/26/06, Alagu Madhu <[EMAIL PROTECTED]> wrote:
I like to use django + plain db-api(psycopg2).I'm looking for example
or reference.

Hi Alagu,

Just use whatever code you need to use within your view function.
There's really nothing to it. Example:

   def my_view(request):
       conn = psycopg2.connect('dbname=foo')
       cursor = conn.cursor()
       cursor.execute('xxxxxxx')

There is no magic to be aware of. It's just plain Python.

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to