I'm not sure if there is an exact technical defintion of the term
'bind' here. I am assuming you will need the two applications to
share a common database? And I am assuming that other application has
already been developed and
deployed and so you are inclined to work around it?

So this becomes more of a database question, and might be
particular to the particular database engine in use.  I hope it is
clear that you do NOT have to use a database that is created
with the manage.py syncdb command; although you must have
a database that is compatible with one that is created by that
command - but it can be a 'superset' of that database.

My guess is that you might need to know a little bit about the
command line interface of the database engine (I doubt you
need to be a "power user")  And then brush up on the
manage.py database subcommands (dumpdata, inspectdb,
and various sql*) and that will help clarify a solution path.

-Chip
On Oct 16, 10:10 am, Léon Dignòn <leon.dig...@gmail.com> wrote:
> I have a project. Within that project I have the app callerlist.
> Callerlist is a list of either inbound or outbound phone calls. To
> each phone call the following information should be written down: own
> name, name of the caller, subject, message and time. This app has to
> be coherent.
>
> Now, for example, I want to bind the above app to an crm system or
> another application with customer data. I am not sure which is the
> best way to provide that interface. Should I provide an additional
> field as a foreign key to the customer table? The table could be
> defined via a variable in the settings.py.
>
> Or are there better solutions?
>
> ld
--~--~---------~--~----~------------~-------~--~----~
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