Click here to Skip to main content
15,887,338 members
Home / Discussions / Database
   

Database

 
AnswerRe: Using the database from C# Pin
Eddy Vluggen25-Jun-09 11:22
professionalEddy Vluggen25-Jun-09 11:22 
AnswerRe: Using the database from C# Pin
Mycroft Holmes25-Jun-09 17:22
professionalMycroft Holmes25-Jun-09 17:22 
GeneralRe: Using the database from C# Pin
kikeman26-Jun-09 7:30
kikeman26-Jun-09 7:30 
QuestionWhat way of datastorage should be use for small aaplication Pin
Member 442053425-Jun-09 1:47
Member 442053425-Jun-09 1:47 
AnswerMS-Access Pin
David Mujica25-Jun-09 2:55
David Mujica25-Jun-09 2:55 
AnswerRe: What way of datastorage should be use for small aaplication Pin
Niladri_Biswas25-Jun-09 5:07
Niladri_Biswas25-Jun-09 5:07 
AnswerRe: What way of datastorage should be use for small aaplication Pin
J4amieC25-Jun-09 5:52
J4amieC25-Jun-09 5:52 
AnswerRe: What way of datastorage should be use for small aaplication Pin
David Skelly25-Jun-09 6:22
David Skelly25-Jun-09 6:22 
You don't say what technology you are using for the application as that may offer you different choices.

For example, if it's Java you could look at JavaDB, or HSQLDB (H2), or DB4O. Or, if you don't need a full-fledged database you could simply serialise your objects out to disk (or maybe use the built-in XMLEncoder class). I think DB4O might also have .NET support as well, I'm not sure.

For C or C++ you have SQLite among others.

Python also supports SQLite, and also has various options like pickle, shelve, gadfly.

SQL Server Express might actually a reasonable choice: it can be used embedded from a number of different languages and it is free (as far as I am aware if you are using it embedded in a single user application there are no licensing costs). FireBird is also an option for this sort of thing if you don't like SQL Server for whatever reason. I would say Access is not a bad choice for a stand-alone single user system, I would not agree that it is "not being used much anymore". I've seen several .NET applications that use it internally as a local data-store on a user's PC.

FoxPro is a complete all-in-one database and development environment (I haven't seen it in years myself but as far as I am aware it is still going strong with an army of loyal fans).

Or if all else fails you could simply write the data out to a text file on the disk in some sort of structured format. If your application is small and data volumes will be low, that might be the easiest option. If security is a concern you will need to work something out to encrypt the data.

I guess the short answer is, "It depends..."
AnswerRe: What way of datastorage should be use for small aaplication Pin
riced25-Jun-09 6:25
riced25-Jun-09 6:25 
GeneralRe: What way of datastorage should be use for small aaplication Pin
Eddy Vluggen25-Jun-09 6:26
professionalEddy Vluggen25-Jun-09 6:26 
AnswerRe: What way of datastorage should be use for small aaplication Pin
Eddy Vluggen25-Jun-09 6:25
professionalEddy Vluggen25-Jun-09 6:25 
GeneralRe: What way of datastorage should be use for small aaplication Pin
David Skelly25-Jun-09 22:39
David Skelly25-Jun-09 22:39 
GeneralRe: What way of datastorage should be use for small aaplication Pin
Eddy Vluggen26-Jun-09 0:17
professionalEddy Vluggen26-Jun-09 0:17 
AnswerRe: What way of datastorage should be use for small aaplication Pin
Andy_L_J26-Jun-09 19:14
Andy_L_J26-Jun-09 19:14 
QuestionSplit table Pin
sujithkumarsl24-Jun-09 20:46
sujithkumarsl24-Jun-09 20:46 
AnswerRe: Split table Pin
WoutL24-Jun-09 21:55
WoutL24-Jun-09 21:55 
GeneralRe: Split table Pin
sujithkumarsl24-Jun-09 22:01
sujithkumarsl24-Jun-09 22:01 
GeneralRe: Split table Pin
J4amieC25-Jun-09 0:26
J4amieC25-Jun-09 0:26 
GeneralRe: Split table Pin
sujithkumarsl25-Jun-09 0:30
sujithkumarsl25-Jun-09 0:30 
GeneralRe: Split table Pin
Mycroft Holmes25-Jun-09 0:54
professionalMycroft Holmes25-Jun-09 0:54 
GeneralRe: Split table Pin
sujithkumarsl25-Jun-09 1:15
sujithkumarsl25-Jun-09 1:15 
QuestionSQL Profiler for Oracle? Pin
devvvy24-Jun-09 20:43
devvvy24-Jun-09 20:43 
AnswerRe: SQL Profiler for Oracle? Pin
r a m e s h25-Jun-09 0:25
r a m e s h25-Jun-09 0:25 
AnswerQuest tools Pin
David Mujica25-Jun-09 2:52
David Mujica25-Jun-09 2:52 
GeneralRe: Quest tools Pin
devvvy25-Jun-09 4:15
devvvy25-Jun-09 4:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.