Click here to Skip to main content
15,905,028 members
Home / Discussions / Database
   

Database

 
GeneralRe: Web Apps only have 1 user Pin
Enver Maroshi26-Jun-09 7:33
Enver Maroshi26-Jun-09 7:33 
GeneralRe: Web Apps only have 1 user Pin
softwarejaeger26-Jun-09 7:49
softwarejaeger26-Jun-09 7:49 
GeneralRe: Web Apps only have 1 user Pin
softwarejaeger26-Jun-09 8:21
softwarejaeger26-Jun-09 8:21 
GeneralRe: XML, Serialization, Object Oriented Pin
Enver Maroshi26-Jun-09 21:09
Enver Maroshi26-Jun-09 21:09 
AnswerRe: Develop own small database-system Pin
David Skelly28-Jun-09 23:01
David Skelly28-Jun-09 23:01 
AnswerRe: Develop own small database-system Pin
smcnulty200029-Jun-09 21:30
smcnulty200029-Jun-09 21:30 
QuestionOut of range exception when using spaces to SQL? [modified] Pin
cdietschrun26-Jun-09 4:02
cdietschrun26-Jun-09 4:02 
AnswerRe: Out of range exception when using spaces to SQL? Pin
Niladri_Biswas26-Jun-09 5:49
Niladri_Biswas26-Jun-09 5:49 
QuestionIs it possible to write stored procedures and views in ms access Pin
Member 426027026-Jun-09 0:35
Member 426027026-Jun-09 0:35 
AnswerRe: Is it possible to write stored procedures and views in ms access Pin
riced26-Jun-09 2:05
riced26-Jun-09 2:05 
QuestionFloat or else? Pin
VisualLive25-Jun-09 16:37
VisualLive25-Jun-09 16:37 
AnswerRe: Float or else? Pin
Mycroft Holmes25-Jun-09 17:18
professionalMycroft Holmes25-Jun-09 17:18 
GeneralRe: Float or else? Pin
J4amieC25-Jun-09 23:50
J4amieC25-Jun-09 23:50 
GeneralRe: Float or else? Pin
Mycroft Holmes26-Jun-09 0:29
professionalMycroft Holmes26-Jun-09 0:29 
AnswerRe: Float or else? Pin
Niladri_Biswas26-Jun-09 5:26
Niladri_Biswas26-Jun-09 5:26 
QuestionUsing the database from C# Pin
kikeman25-Jun-09 10:03
kikeman25-Jun-09 10:03 
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 

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.