Click here to Skip to main content
16,021,181 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to create an unified email application but don't know which database should i use
Posted
Comments
[no name] 29-Jun-14 10:03am    
Use which ever one meets the requirements for your application. Since we would have no idea what your requirements are.....
Nainaaa 29-Jun-14 10:17am    
my application requirements are same like yahoo, hotmail etc
[no name] 29-Jun-14 10:22am    
And that means absolutely nothing. "like yahoo" and "like hotmail" are not program requirements.
Nainaaa 29-Jun-14 10:20am    
am confused whether to use local or service based database for my application?
[no name] 29-Jun-14 10:44am    
Okay.... if you need local database storage, then use a local database. If you need a client-server type of database, then use a database server.

1 solution

Databases and emails aren't necessarily synonymous: you don't need a database in order to write an application that can send and receive emails.

So use what is appropriate and available.
If you want this to be multiuser, then use a multiuser system: MsSql or MySql.
If this is going to be single user only, then SqlCE, SqLite or even Access.
Or you could just use a file-based approach and store emails as individual files in a folder structure - it's entirely up to you, what you are familiar with, what you have available on your client system, and that fits with the rest of your application.

There is no "single right answer" to this.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900