Click here to Skip to main content
15,921,837 members
Home / Discussions / C#
   

C#

 
AnswerRe: strange behaviour of click method Pin
Eddy Vluggen10-Apr-14 3:01
professionalEddy Vluggen10-Apr-14 3:01 
GeneralRe: strange behaviour of click method Pin
joost.versteegen10-Apr-14 3:30
joost.versteegen10-Apr-14 3:30 
GeneralRe: strange behaviour of click method Pin
Eddy Vluggen10-Apr-14 4:59
professionalEddy Vluggen10-Apr-14 4:59 
GeneralRe: strange behaviour of click method Pin
joost.versteegen10-Apr-14 7:52
joost.versteegen10-Apr-14 7:52 
QuestionRe: strange behaviour of click method Pin
Eddy Vluggen10-Apr-14 11:03
professionalEddy Vluggen10-Apr-14 11:03 
AnswerRe: strange behaviour of click method Pin
Bernhard Hiller10-Apr-14 23:07
Bernhard Hiller10-Apr-14 23:07 
QuestionI need code for sending SMS through asp.net in c# Pin
Member 107033699-Apr-14 23:30
Member 107033699-Apr-14 23:30 
AnswerRe: I need code for sending SMS through asp.net in c# Pin
OriginalGriff10-Apr-14 0:06
mveOriginalGriff10-Apr-14 0:06 
AnswerRe: I need code for sending SMS through asp.net in c# Pin
Richard MacCutchan10-Apr-14 2:23
mveRichard MacCutchan10-Apr-14 2:23 
QuestionDesigner Problem Pin
Meysam Toluie9-Apr-14 19:22
Meysam Toluie9-Apr-14 19:22 
AnswerRe: Designer Problem Pin
OriginalGriff9-Apr-14 20:31
mveOriginalGriff9-Apr-14 20:31 
GeneralRe: Designer Problem Pin
Meysam Toluie9-Apr-14 20:45
Meysam Toluie9-Apr-14 20:45 
AnswerRe: Designer Problem Pin
OriginalGriff9-Apr-14 20:53
mveOriginalGriff9-Apr-14 20:53 
GeneralRe: Designer Problem Pin
Meysam Toluie9-Apr-14 21:30
Meysam Toluie9-Apr-14 21:30 
GeneralRe: Designer Problem Pin
OriginalGriff9-Apr-14 21:54
mveOriginalGriff9-Apr-14 21:54 
GeneralRe: Designer Problem Pin
Meysam Toluie9-Apr-14 22:36
Meysam Toluie9-Apr-14 22:36 
GeneralRe: Designer Problem Pin
OriginalGriff9-Apr-14 22:57
mveOriginalGriff9-Apr-14 22:57 
GeneralRe: Designer Problem Pin
Meysam Toluie9-Apr-14 23:23
Meysam Toluie9-Apr-14 23:23 
GeneralRe: Designer Problem Pin
Dave Kreskowiak10-Apr-14 2:26
mveDave Kreskowiak10-Apr-14 2:26 
AnswerRe: Designer Problem Pin
V.10-Apr-14 22:57
professionalV.10-Apr-14 22:57 
QuestionWhen to read data tables? Pin
Shady George9-Apr-14 11:26
Shady George9-Apr-14 11:26 
AnswerRe: When to read data tables? Pin
OriginalGriff9-Apr-14 20:29
mveOriginalGriff9-Apr-14 20:29 
It really all depends on what you are doing! Laugh | :laugh:
There is no "this is best" solution - or we would all just use that and the other solutions would fall by the wayside...

The SQL server SQLite decision is a case in point: Are you expecting only one person to use the information, or multiple people? If it's one person, then yes, SQL Server can be overkill. But if it's two people who need access to the DB, then a server based solution (SQL Server or MySql) is absolutely a good idea, and SQLite is a very poor decision because it will give you enormous hassles. But...Yesterday I spent ten minutes swapping one of my utility apps from SQLCE to SQL Server despite being the only person who uses it, simply because I was fed up with the low speed on start up / shut down - so it's isn't always as black and white as it seems... Laugh | :laugh:

The tables are the same: it depends what you are doing! I have systems which do it both ways: but generally if two people can change the data, then local caching becomes a problem, unless you use some SQL triggering to force an update on your application - which is not a trivial job!

So no, we can't tell you which way to go: just keep you data layer separate from your business and presentation layers so if you did chose the wrong solution, you can "undo" it as easily as possible!
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)

GeneralRe: When to read data tables? Pin
Shady George9-Apr-14 22:13
Shady George9-Apr-14 22:13 
GeneralRe: When to read data tables? Pin
OriginalGriff9-Apr-14 22:19
mveOriginalGriff9-Apr-14 22:19 
GeneralRe: When to read data tables? Pin
joost.versteegen10-Apr-14 1:40
joost.versteegen10-Apr-14 1:40 

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.