Multiple user access to sql database
I have one master database at server. This contains a table TVehicle information like Make, model, series, grade, production year.
I have multiple users say U1,U2,U3 all have same winforms application (C#) accessing this database from server. I want a logic such that when U1 modify a vehicle say v1, other users u2 & u3 application must show that this vehicle is locked. Please can you help me out in this?
Thanks in advance.
c#
|
show 3 more comments
I have one master database at server. This contains a table TVehicle information like Make, model, series, grade, production year.
I have multiple users say U1,U2,U3 all have same winforms application (C#) accessing this database from server. I want a logic such that when U1 modify a vehicle say v1, other users u2 & u3 application must show that this vehicle is locked. Please can you help me out in this?
Thanks in advance.
c#
Are you using an ORM?
– CodeNotFound
Nov 22 '18 at 13:23
1
the simplest way i can think about is to add a column to each row, let's call it ModifiedBy(int) and, and her default value is zero, if U1 changes V1 it ModifiedBy changes to 1, if U2 changes V1 , ModifiedBy changes to 2, and then you check if ModifiedBy is diffrent than zero
– styx
Nov 22 '18 at 13:26
@styx and hope that none forgets to reset that ModifiedBy back to zero when finished. Of course in an ideal world we never forget anything and we never have crashes that stops our processing.
– Steve
Nov 22 '18 at 13:48
@Steve I said simplest, not the best way
– styx
Nov 22 '18 at 13:53
1
OK, but simplest doesn't mean broken.
– Steve
Nov 22 '18 at 13:56
|
show 3 more comments
I have one master database at server. This contains a table TVehicle information like Make, model, series, grade, production year.
I have multiple users say U1,U2,U3 all have same winforms application (C#) accessing this database from server. I want a logic such that when U1 modify a vehicle say v1, other users u2 & u3 application must show that this vehicle is locked. Please can you help me out in this?
Thanks in advance.
c#
I have one master database at server. This contains a table TVehicle information like Make, model, series, grade, production year.
I have multiple users say U1,U2,U3 all have same winforms application (C#) accessing this database from server. I want a logic such that when U1 modify a vehicle say v1, other users u2 & u3 application must show that this vehicle is locked. Please can you help me out in this?
Thanks in advance.
c#
c#
asked Nov 22 '18 at 13:22
ShivakumarShivakumar
52
52
Are you using an ORM?
– CodeNotFound
Nov 22 '18 at 13:23
1
the simplest way i can think about is to add a column to each row, let's call it ModifiedBy(int) and, and her default value is zero, if U1 changes V1 it ModifiedBy changes to 1, if U2 changes V1 , ModifiedBy changes to 2, and then you check if ModifiedBy is diffrent than zero
– styx
Nov 22 '18 at 13:26
@styx and hope that none forgets to reset that ModifiedBy back to zero when finished. Of course in an ideal world we never forget anything and we never have crashes that stops our processing.
– Steve
Nov 22 '18 at 13:48
@Steve I said simplest, not the best way
– styx
Nov 22 '18 at 13:53
1
OK, but simplest doesn't mean broken.
– Steve
Nov 22 '18 at 13:56
|
show 3 more comments
Are you using an ORM?
– CodeNotFound
Nov 22 '18 at 13:23
1
the simplest way i can think about is to add a column to each row, let's call it ModifiedBy(int) and, and her default value is zero, if U1 changes V1 it ModifiedBy changes to 1, if U2 changes V1 , ModifiedBy changes to 2, and then you check if ModifiedBy is diffrent than zero
– styx
Nov 22 '18 at 13:26
@styx and hope that none forgets to reset that ModifiedBy back to zero when finished. Of course in an ideal world we never forget anything and we never have crashes that stops our processing.
– Steve
Nov 22 '18 at 13:48
@Steve I said simplest, not the best way
– styx
Nov 22 '18 at 13:53
1
OK, but simplest doesn't mean broken.
– Steve
Nov 22 '18 at 13:56
Are you using an ORM?
– CodeNotFound
Nov 22 '18 at 13:23
Are you using an ORM?
– CodeNotFound
Nov 22 '18 at 13:23
1
1
the simplest way i can think about is to add a column to each row, let's call it ModifiedBy(int) and, and her default value is zero, if U1 changes V1 it ModifiedBy changes to 1, if U2 changes V1 , ModifiedBy changes to 2, and then you check if ModifiedBy is diffrent than zero
– styx
Nov 22 '18 at 13:26
the simplest way i can think about is to add a column to each row, let's call it ModifiedBy(int) and, and her default value is zero, if U1 changes V1 it ModifiedBy changes to 1, if U2 changes V1 , ModifiedBy changes to 2, and then you check if ModifiedBy is diffrent than zero
– styx
Nov 22 '18 at 13:26
@styx and hope that none forgets to reset that ModifiedBy back to zero when finished. Of course in an ideal world we never forget anything and we never have crashes that stops our processing.
– Steve
Nov 22 '18 at 13:48
@styx and hope that none forgets to reset that ModifiedBy back to zero when finished. Of course in an ideal world we never forget anything and we never have crashes that stops our processing.
– Steve
Nov 22 '18 at 13:48
@Steve I said simplest, not the best way
– styx
Nov 22 '18 at 13:53
@Steve I said simplest, not the best way
– styx
Nov 22 '18 at 13:53
1
1
OK, but simplest doesn't mean broken.
– Steve
Nov 22 '18 at 13:56
OK, but simplest doesn't mean broken.
– Steve
Nov 22 '18 at 13:56
|
show 3 more comments
1 Answer
1
active
oldest
votes
You can add 3 columns :
ModifiedBy (username )
ModifiedOn ( DateTime)
isVehicleLock(Boolean)
to the TVehicle table and check the value of isVehicleLock column everytime you want to display a record, so if "isVehicleLock" is equal to True and ModifiedBy is different from the current user you can display the vehicle as locked .
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431948%2fmultiple-user-access-to-sql-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can add 3 columns :
ModifiedBy (username )
ModifiedOn ( DateTime)
isVehicleLock(Boolean)
to the TVehicle table and check the value of isVehicleLock column everytime you want to display a record, so if "isVehicleLock" is equal to True and ModifiedBy is different from the current user you can display the vehicle as locked .
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
add a comment |
You can add 3 columns :
ModifiedBy (username )
ModifiedOn ( DateTime)
isVehicleLock(Boolean)
to the TVehicle table and check the value of isVehicleLock column everytime you want to display a record, so if "isVehicleLock" is equal to True and ModifiedBy is different from the current user you can display the vehicle as locked .
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
add a comment |
You can add 3 columns :
ModifiedBy (username )
ModifiedOn ( DateTime)
isVehicleLock(Boolean)
to the TVehicle table and check the value of isVehicleLock column everytime you want to display a record, so if "isVehicleLock" is equal to True and ModifiedBy is different from the current user you can display the vehicle as locked .
You can add 3 columns :
ModifiedBy (username )
ModifiedOn ( DateTime)
isVehicleLock(Boolean)
to the TVehicle table and check the value of isVehicleLock column everytime you want to display a record, so if "isVehicleLock" is equal to True and ModifiedBy is different from the current user you can display the vehicle as locked .
edited Nov 22 '18 at 14:35
answered Nov 22 '18 at 14:24
Jigna JainJigna Jain
1129
1129
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
add a comment |
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
Then, everytime once in certain duration I always keep checking the ModifiedBy bool value to other users? Don't you think it hits performance because everytime we fire query to server for this status?
– Shivakumar
Nov 23 '18 at 4:44
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431948%2fmultiple-user-access-to-sql-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you using an ORM?
– CodeNotFound
Nov 22 '18 at 13:23
1
the simplest way i can think about is to add a column to each row, let's call it ModifiedBy(int) and, and her default value is zero, if U1 changes V1 it ModifiedBy changes to 1, if U2 changes V1 , ModifiedBy changes to 2, and then you check if ModifiedBy is diffrent than zero
– styx
Nov 22 '18 at 13:26
@styx and hope that none forgets to reset that ModifiedBy back to zero when finished. Of course in an ideal world we never forget anything and we never have crashes that stops our processing.
– Steve
Nov 22 '18 at 13:48
@Steve I said simplest, not the best way
– styx
Nov 22 '18 at 13:53
1
OK, but simplest doesn't mean broken.
– Steve
Nov 22 '18 at 13:56