On 4/5/07, Frank <[EMAIL PROTECTED]> wrote:
>
> intranet site?
>     Directory c:\mysite
>         Directory c:\mysite\app1
>         Directory c:\mysite\app2
>         Directory c:\mysite\app3

Sure, you can.  I'd say as long as you have the same trust and some
unifying base of data, it makes sense to run a single site.

> 2. Do I let users access mysite using the admin url?
>     http://localhost:8000/mysite/admin/

Only if you trust them.  :)

> 3. Does django support ODBC, have need to query AS/400

No, sorry.  If you feel ambitious, you could add support for it via mxODBC.
http://www.egenix.com/files/python/mxODBC.html

> 4. How do I create a TextField that looks up a value from another database
> table?

You mean a model field or a form field?
If you mean model, you probably want a foreign key.
If you mean form, it's decoupled from the DB, so you can bind the
value however you like.

> 5. Can I define multi databases in settings

It's in an experimental state.
See:
http://code.djangoproject.com/wiki/MultipleDatabaseSupport
and
http://code.djangoproject.com/browser/django/branches/multiple-db-support

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