Click here to Skip to main content
15,917,062 members
Home / Discussions / C#
   

C#

 
GeneralRe: How can I use From 2 weather webservices ? Pin
aref8711-Aug-08 15:02
aref8711-Aug-08 15:02 
QuestionHow can I extrude ESCAPE CHARACTERS from a string ? [modified] Pin
Mohammad Dayyan11-Aug-08 11:56
Mohammad Dayyan11-Aug-08 11:56 
AnswerRe: How can I extrude ESCAPE CHARACTERS from a string ? Pin
Yusuf11-Aug-08 13:13
Yusuf11-Aug-08 13:13 
GeneralRe: How can I extrude ESCAPE CHARACTERS from a string ? Pin
Mohammad Dayyan11-Aug-08 14:21
Mohammad Dayyan11-Aug-08 14:21 
QuestionDateTime Pin
ctrlnick11-Aug-08 11:51
ctrlnick11-Aug-08 11:51 
AnswerRe: DateTime Pin
Mohammad Dayyan11-Aug-08 12:21
Mohammad Dayyan11-Aug-08 12:21 
AnswerRe: DateTime Pin
Paul Conrad11-Aug-08 12:29
professionalPaul Conrad11-Aug-08 12:29 
AnswerRe: DateTime Pin
nelsonpaixao11-Aug-08 14:37
nelsonpaixao11-Aug-08 14:37 
QuestionXML elements not showing values Pin
Ekjon11-Aug-08 11:11
Ekjon11-Aug-08 11:11 
AnswerRe: XML elements not showing values Pin
Christian Graus11-Aug-08 11:18
protectorChristian Graus11-Aug-08 11:18 
GeneralRe: XML elements not showing values Pin
Ekjon11-Aug-08 11:25
Ekjon11-Aug-08 11:25 
GeneralRe: XML elements not showing values Pin
Ekjon11-Aug-08 12:23
Ekjon11-Aug-08 12:23 
QuestionHelp with calling external applications from C# Pin
charlieyv11-Aug-08 10:26
charlieyv11-Aug-08 10:26 
AnswerRe: Help with calling external applications from C# Pin
Manas Bhardwaj11-Aug-08 10:50
professionalManas Bhardwaj11-Aug-08 10:50 
AnswerRe: Help with calling external applications from C# Pin
Mohammad Dayyan11-Aug-08 12:29
Mohammad Dayyan11-Aug-08 12:29 
Questionwindows forms data business objects or database Pin
bfis10813711-Aug-08 10:05
bfis10813711-Aug-08 10:05 
AnswerRe: windows forms data business objects or database Pin
Pete O'Hanlon11-Aug-08 10:37
mvePete O'Hanlon11-Aug-08 10:37 
GeneralRe: windows forms data business objects or database Pin
bfis10813711-Aug-08 11:33
bfis10813711-Aug-08 11:33 
GeneralRe: windows forms data business objects or database Pin
Pete O'Hanlon11-Aug-08 21:56
mvePete O'Hanlon11-Aug-08 21:56 
AnswerRe: windows forms data business objects or database Pin
Wendelius11-Aug-08 10:40
mentorWendelius11-Aug-08 10:40 
Hi,

First of all let me say that this is not an answer but just a bunch of additional questions. When reading your post I was wondering questions like:
- do you need concurrency control? This seems like single user application if your data is located on client, but do you have simultaneous threads accessing the same data.
- how much data do you plan to store. If there's going to be "lots" of it, you may end up with performance issues without a good data store
- how about state handling and transactions. Are they needed
- is referential integrity or key handling needed between serialized data
- is there a reason why you don't want to use datasets for storing data (if theres only a small amount of data)
- security issues of any kind, access rights etc
- backups needed at any time and how they are handled and so on...

Including a database (of some kind) into your project is going to cause some "extra work" for you but it also takes away much coding when it comes to the issues mentioned above. Usually the savings is greater. This approach also adds scalability to your project if needed.

Database can be installed with a very small footprint and the installation usually can be completely added to your deployment mechanism. Some of those databases are (just my preferences) Oracle XE, SQL Server Express Edition and DB2 Express-C. But still, not saying that is the optimal approach to you.

Mika
GeneralRe: windows forms data business objects or database Pin
bfis10813711-Aug-08 10:58
bfis10813711-Aug-08 10:58 
GeneralRe: windows forms data business objects or database Pin
Mark Churchill11-Aug-08 19:03
Mark Churchill11-Aug-08 19:03 
GeneralRe: windows forms data business objects or database Pin
bfis10813711-Aug-08 19:10
bfis10813711-Aug-08 19:10 
GeneralRe: windows forms data business objects or database Pin
Mark Churchill11-Aug-08 19:27
Mark Churchill11-Aug-08 19:27 
GeneralRe: windows forms data business objects or database Pin
Wendelius12-Aug-08 8:25
mentorWendelius12-Aug-08 8: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.