On Apr 30, 6:45 pm, peter <cfp...@gmail.com> wrote:
> Hello,
>   I'm an newbie so please bear with me.
>
>   I have a simple form that a user can select the from different
> product line (databases) and search based on serial number.  From what
> I have read, the database name needs to be specified within Django,
> which in this case is a dynamic variable.  How can I get around this
> dealing with multiple database search problem?
>
> Thanks,
> -Peter


Django can't currently switch between databases - there is a Summer of
Code project this year to make it possible - but I wonder if you
really need it.

I suspect you are confused about what a database consists of. A
database is a collection of tables, and individual databases are
usually quite separate from one another. While I don't know the
details of your setup, it seems unlikely that you would have multiple
databases for different product lines - in fact I wouldn't even have
separate sets of tables, the best way would be to have one table
containing the product line codes and one with the individual
products, with a foreign key to the product lines table.

Can you give more details of your setup - is this a legacy database?
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to