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

C#

 
GeneralRe: Executing other applications inside another Pin
Anonymous30-Jun-04 2:28
Anonymous30-Jun-04 2:28 
GeneralRe: Executing other applications inside another Pin
Heath Stewart30-Jun-04 2:38
protectorHeath Stewart30-Jun-04 2:38 
GeneralRe: Executing other applications inside another Pin
Anonymous30-Jun-04 5:47
Anonymous30-Jun-04 5:47 
GeneralRe: Executing other applications inside another Pin
Anonymous30-Jun-04 9:50
Anonymous30-Jun-04 9:50 
GeneralHaving trouble with debugging Pin
Flack28-Jun-04 9:06
Flack28-Jun-04 9:06 
GeneralRe: Having trouble with debugging Pin
Dave Kreskowiak29-Jun-04 3:24
mveDave Kreskowiak29-Jun-04 3:24 
GeneralKeeping the record on hold Pin
IamADotNetGuy28-Jun-04 8:03
IamADotNetGuy28-Jun-04 8:03 
GeneralRe: Keeping the record on hold Pin
Heath Stewart28-Jun-04 9:07
protectorHeath Stewart28-Jun-04 9:07 
The database is the best place to do it? Why would you want to do it anywhere else. You do understand that, unless you're using XML Web Services, .NET Remoting, or some other singleton that handles all user requests, there's no better way to do it and that every process has distinct resources?

In SQL Server, for example, you can use row-level locking while updating data like so:
UPDATE MyTable WITH ROWLOCK
SET SomeField = 'Some Value'
WHERE ID = 1
Without a daemon brokering calls to clients (which an RDBMS already is, so why write another?), there's no way to lock an object (row, table, etc.) for one particular user from others.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Keeping the record on hold Pin
OBRon28-Jun-04 9:25
OBRon28-Jun-04 9:25 
GeneralRe: Keeping the record on hold Pin
Steven Campbell28-Jun-04 13:35
Steven Campbell28-Jun-04 13:35 
GeneralRe: Keeping the record on hold Pin
Serge Lobko-Lobanovsky28-Jun-04 23:51
Serge Lobko-Lobanovsky28-Jun-04 23:51 
GeneralMultiple Forms Pin
Jon_Slaughter28-Jun-04 6:44
Jon_Slaughter28-Jun-04 6:44 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 6:56
protectorHeath Stewart28-Jun-04 6:56 
GeneralRe: Multiple Forms Pin
Jon_Slaughter28-Jun-04 8:21
Jon_Slaughter28-Jun-04 8:21 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 8:57
protectorHeath Stewart28-Jun-04 8:57 
GeneralRe: Multiple Forms Pin
Jon_Slaughter28-Jun-04 9:16
Jon_Slaughter28-Jun-04 9:16 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 9:34
protectorHeath Stewart28-Jun-04 9:34 
GeneralRe: Multiple Forms Pin
Jon_Slaughter28-Jun-04 11:14
Jon_Slaughter28-Jun-04 11:14 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 11:27
protectorHeath Stewart28-Jun-04 11:27 
GeneralMulticast Programming Pin
goodpilot28-Jun-04 6:25
goodpilot28-Jun-04 6:25 
GeneralRe: Multicast Programming Pin
Heath Stewart28-Jun-04 6:47
protectorHeath Stewart28-Jun-04 6:47 
GeneralRe: Multicast Programming Pin
goodpilot28-Jun-04 7:35
goodpilot28-Jun-04 7:35 
GeneralGetting a ConfigurationException and I dont know why Pin
Flack28-Jun-04 6:18
Flack28-Jun-04 6:18 
GeneralRe: Getting a ConfigurationException and I dont know why Pin
Heath Stewart28-Jun-04 6:25
protectorHeath Stewart28-Jun-04 6:25 
GeneralRe: Getting a ConfigurationException and I dont know why Pin
Flack28-Jun-04 6:35
Flack28-Jun-04 6:35 

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.