Multiple user access to sql database












-1















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.










share|improve this question























  • 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
















-1















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.










share|improve this question























  • 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














-1












-1








-1


1






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.










share|improve this question














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#






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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



















  • 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












1 Answer
1






active

oldest

votes


















0














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 .






share|improve this answer


























  • 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











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
});


}
});














draft saved

draft discarded


















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









0














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 .






share|improve this answer


























  • 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
















0














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 .






share|improve this answer


























  • 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














0












0








0







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 .






share|improve this answer















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 .







share|improve this answer














share|improve this answer



share|improve this answer








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



















  • 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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith