shabda wrote:
>> You could use SQLAlchemy to access your forum database, as long as you
>> don't need it in the admin.
> 
> As, I just need to access the other DB in one place, I think this is
> the way to go here.

Come on guys! If you just need to create a record in a DB you certainly 
don't need *any* framework for it. It's a Python world, you can just 
write stuff here, not wait for any vendor to supply a framework for 
every possible movement.

This is as simple as:

     db = MySQLdb.connect(host='..', user='..', passwd='..')
     cursor = db.cursor()
     cursor.execute('insert into .. ')

--~--~---------~--~----~------------~-------~--~----~
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