Hello,Is it possible to create specific models without a database table?
Basically what I would like to do is create an email account management application that ties into my existing mail server and its API. I would like Django to have a Users model and keep track of users, a Domains model to keep track of the email domains for the user, but I don't want it to actually keep track of email addresses. Once the user is in the application, they will go into the "EmailAccount" model and I simply want the model to query my mail server via its SOAP API. So when they create/delete/edit email accounts, there will be form pages and simple validation done by Django, but the actual work will be done by connecting to the mail servers API and not a database.
Is this possible?
I'm coming from a world of CakePHP. I did more Python programming back in the day, and am getting back into it, so I'm trying to get more familiar with Django.
Thanks for the suggestions, I'll see what I can make happen.
Cheers,
Filip
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Are there any examples out there that get me started for overriding the save() method?
Ideally, I'd like to create fields in the Model that will similarly match fields in the mail server's API, so I can do queries, updates, etc. I realize that I will need to do a lot of trickery to try to bring it closer to the standard ORM model. So any little examples that might be out there would be helpful.
> All the above advice is worth exactly what you paid for it!
Thanks again!