How to use ExecuteScalar() to get a value and give it to your textbox.text?












2















this is my table:



CREATE TABLE [dbo].[InvoiceTable] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[CodeColumn] NVARCHAR (50) NOT NULL,
[NameColumn] NVARCHAR (50) NOT NULL,
[QTYColumn] INT NULL,
[TotalQTYColumn] INT NULL,
[UnitCostColumn] INT NOT NULL,
[DiscountRateColumn] FLOAT (53) DEFAULT ((0)) NULL,
[RowTotalColumn] AS (([QTYColumn]*[UnitCostColumn])*((1)-[DiscountRateColumn])) PERSISTED,
PRIMARY KEY CLUSTERED ([Id] ASC)
);


I have an Invoice form and a Confirimation form. User selects the desired goods in the first form and confirms how much he/she should pay in the second form. I want my program to show the value of sum(RowTotalColumn) as a text in my TotalCostTextBox.Text.
I wrote the following code:



private int ConfirmForm_Load(object sender, EventArgs e)
{
string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
var sqlcmd = new SqlCommand(selectQuery, sqlcon);
var result = sqlcmd.ExecuteScalar();
return int.Parse(result.ToString());
TotalCostTextBox1.Text = result.ToString();


when I put TotalCostTextBox1.Text = result.ToString(); after return it yells




Unreachable code detected




when I put it before return, TotalCostTextBox1 shows nothing...



Please tell me how to fill the TotalCostTextBox1 with the value. not about return statement.










share|improve this question




















  • 2





    because of you use return before TotalCostTextBox1.Text = result.ToString(); when you write return current block close

    – erdi yılmaz
    Nov 21 '18 at 9:56













  • This should help solve your problem - tutorials.visualstudio.com/vs-get-started/debugging | docs.microsoft.com/en-us/visualstudio/debugger/…

    – Rand Random
    Nov 21 '18 at 10:06













  • Change int to void and remove return after look at your designer.cs is it have code like this code this.Load += new System.EventHandler(this.ConfirmForm_Load); code is not add this code

    – erdi yılmaz
    Nov 21 '18 at 10:31






  • 1





    @erdiyılmaz Thankyou your comment poped something in my head which was related to your comment I fixed it and now my problem is solved. thank you :)

    – Daniel_Ranjbar
    Nov 21 '18 at 10:49
















2















this is my table:



CREATE TABLE [dbo].[InvoiceTable] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[CodeColumn] NVARCHAR (50) NOT NULL,
[NameColumn] NVARCHAR (50) NOT NULL,
[QTYColumn] INT NULL,
[TotalQTYColumn] INT NULL,
[UnitCostColumn] INT NOT NULL,
[DiscountRateColumn] FLOAT (53) DEFAULT ((0)) NULL,
[RowTotalColumn] AS (([QTYColumn]*[UnitCostColumn])*((1)-[DiscountRateColumn])) PERSISTED,
PRIMARY KEY CLUSTERED ([Id] ASC)
);


I have an Invoice form and a Confirimation form. User selects the desired goods in the first form and confirms how much he/she should pay in the second form. I want my program to show the value of sum(RowTotalColumn) as a text in my TotalCostTextBox.Text.
I wrote the following code:



private int ConfirmForm_Load(object sender, EventArgs e)
{
string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
var sqlcmd = new SqlCommand(selectQuery, sqlcon);
var result = sqlcmd.ExecuteScalar();
return int.Parse(result.ToString());
TotalCostTextBox1.Text = result.ToString();


when I put TotalCostTextBox1.Text = result.ToString(); after return it yells




Unreachable code detected




when I put it before return, TotalCostTextBox1 shows nothing...



Please tell me how to fill the TotalCostTextBox1 with the value. not about return statement.










share|improve this question




















  • 2





    because of you use return before TotalCostTextBox1.Text = result.ToString(); when you write return current block close

    – erdi yılmaz
    Nov 21 '18 at 9:56













  • This should help solve your problem - tutorials.visualstudio.com/vs-get-started/debugging | docs.microsoft.com/en-us/visualstudio/debugger/…

    – Rand Random
    Nov 21 '18 at 10:06













  • Change int to void and remove return after look at your designer.cs is it have code like this code this.Load += new System.EventHandler(this.ConfirmForm_Load); code is not add this code

    – erdi yılmaz
    Nov 21 '18 at 10:31






  • 1





    @erdiyılmaz Thankyou your comment poped something in my head which was related to your comment I fixed it and now my problem is solved. thank you :)

    – Daniel_Ranjbar
    Nov 21 '18 at 10:49














2












2








2








this is my table:



CREATE TABLE [dbo].[InvoiceTable] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[CodeColumn] NVARCHAR (50) NOT NULL,
[NameColumn] NVARCHAR (50) NOT NULL,
[QTYColumn] INT NULL,
[TotalQTYColumn] INT NULL,
[UnitCostColumn] INT NOT NULL,
[DiscountRateColumn] FLOAT (53) DEFAULT ((0)) NULL,
[RowTotalColumn] AS (([QTYColumn]*[UnitCostColumn])*((1)-[DiscountRateColumn])) PERSISTED,
PRIMARY KEY CLUSTERED ([Id] ASC)
);


I have an Invoice form and a Confirimation form. User selects the desired goods in the first form and confirms how much he/she should pay in the second form. I want my program to show the value of sum(RowTotalColumn) as a text in my TotalCostTextBox.Text.
I wrote the following code:



private int ConfirmForm_Load(object sender, EventArgs e)
{
string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
var sqlcmd = new SqlCommand(selectQuery, sqlcon);
var result = sqlcmd.ExecuteScalar();
return int.Parse(result.ToString());
TotalCostTextBox1.Text = result.ToString();


when I put TotalCostTextBox1.Text = result.ToString(); after return it yells




Unreachable code detected




when I put it before return, TotalCostTextBox1 shows nothing...



Please tell me how to fill the TotalCostTextBox1 with the value. not about return statement.










share|improve this question
















this is my table:



CREATE TABLE [dbo].[InvoiceTable] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[CodeColumn] NVARCHAR (50) NOT NULL,
[NameColumn] NVARCHAR (50) NOT NULL,
[QTYColumn] INT NULL,
[TotalQTYColumn] INT NULL,
[UnitCostColumn] INT NOT NULL,
[DiscountRateColumn] FLOAT (53) DEFAULT ((0)) NULL,
[RowTotalColumn] AS (([QTYColumn]*[UnitCostColumn])*((1)-[DiscountRateColumn])) PERSISTED,
PRIMARY KEY CLUSTERED ([Id] ASC)
);


I have an Invoice form and a Confirimation form. User selects the desired goods in the first form and confirms how much he/she should pay in the second form. I want my program to show the value of sum(RowTotalColumn) as a text in my TotalCostTextBox.Text.
I wrote the following code:



private int ConfirmForm_Load(object sender, EventArgs e)
{
string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
var sqlcmd = new SqlCommand(selectQuery, sqlcon);
var result = sqlcmd.ExecuteScalar();
return int.Parse(result.ToString());
TotalCostTextBox1.Text = result.ToString();


when I put TotalCostTextBox1.Text = result.ToString(); after return it yells




Unreachable code detected




when I put it before return, TotalCostTextBox1 shows nothing...



Please tell me how to fill the TotalCostTextBox1 with the value. not about return statement.







c# sql-server ado.net return executescalar






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 10:46









S.Akbari

30.3k93673




30.3k93673










asked Nov 21 '18 at 9:53









Daniel_RanjbarDaniel_Ranjbar

828




828








  • 2





    because of you use return before TotalCostTextBox1.Text = result.ToString(); when you write return current block close

    – erdi yılmaz
    Nov 21 '18 at 9:56













  • This should help solve your problem - tutorials.visualstudio.com/vs-get-started/debugging | docs.microsoft.com/en-us/visualstudio/debugger/…

    – Rand Random
    Nov 21 '18 at 10:06













  • Change int to void and remove return after look at your designer.cs is it have code like this code this.Load += new System.EventHandler(this.ConfirmForm_Load); code is not add this code

    – erdi yılmaz
    Nov 21 '18 at 10:31






  • 1





    @erdiyılmaz Thankyou your comment poped something in my head which was related to your comment I fixed it and now my problem is solved. thank you :)

    – Daniel_Ranjbar
    Nov 21 '18 at 10:49














  • 2





    because of you use return before TotalCostTextBox1.Text = result.ToString(); when you write return current block close

    – erdi yılmaz
    Nov 21 '18 at 9:56













  • This should help solve your problem - tutorials.visualstudio.com/vs-get-started/debugging | docs.microsoft.com/en-us/visualstudio/debugger/…

    – Rand Random
    Nov 21 '18 at 10:06













  • Change int to void and remove return after look at your designer.cs is it have code like this code this.Load += new System.EventHandler(this.ConfirmForm_Load); code is not add this code

    – erdi yılmaz
    Nov 21 '18 at 10:31






  • 1





    @erdiyılmaz Thankyou your comment poped something in my head which was related to your comment I fixed it and now my problem is solved. thank you :)

    – Daniel_Ranjbar
    Nov 21 '18 at 10:49








2




2





because of you use return before TotalCostTextBox1.Text = result.ToString(); when you write return current block close

– erdi yılmaz
Nov 21 '18 at 9:56







because of you use return before TotalCostTextBox1.Text = result.ToString(); when you write return current block close

– erdi yılmaz
Nov 21 '18 at 9:56















This should help solve your problem - tutorials.visualstudio.com/vs-get-started/debugging | docs.microsoft.com/en-us/visualstudio/debugger/…

– Rand Random
Nov 21 '18 at 10:06







This should help solve your problem - tutorials.visualstudio.com/vs-get-started/debugging | docs.microsoft.com/en-us/visualstudio/debugger/…

– Rand Random
Nov 21 '18 at 10:06















Change int to void and remove return after look at your designer.cs is it have code like this code this.Load += new System.EventHandler(this.ConfirmForm_Load); code is not add this code

– erdi yılmaz
Nov 21 '18 at 10:31





Change int to void and remove return after look at your designer.cs is it have code like this code this.Load += new System.EventHandler(this.ConfirmForm_Load); code is not add this code

– erdi yılmaz
Nov 21 '18 at 10:31




1




1





@erdiyılmaz Thankyou your comment poped something in my head which was related to your comment I fixed it and now my problem is solved. thank you :)

– Daniel_Ranjbar
Nov 21 '18 at 10:49





@erdiyılmaz Thankyou your comment poped something in my head which was related to your comment I fixed it and now my problem is solved. thank you :)

– Daniel_Ranjbar
Nov 21 '18 at 10:49












3 Answers
3






active

oldest

votes


















1














You need to place below assignment statement before return



TotalCostTextBox1.Text = result.ToString();


Your final code should be like below code:



private void ConfirmForm_Load(object sender, EventArgs e)
{
string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
var sqlcmd = new SqlCommand(selectQuery, sqlcon);
var result = sqlcmd.ExecuteScalar();
TotalCostTextBox1.Text = result.ToString();
//return int.Parse(result.ToString());
}


Also you need to check the event binding with ConfirmForm_Load function. To verify this please check if following line is available in ConfirmForm.Designer.cs



this.Load += new System.EventHandler(this.ConfirmForm_Load);





share|improve this answer































    2














    The return type of your method is int, this is why you are getting error. You can change your method return type to void and remove the return keyword:



    private void ConfirmForm_Load


    And



    var result = sqlcmd.ExecuteScalar();
    int x = int.Parse(result.ToString());
    TotalCostTextBox1.Text = x.ToString();





    share|improve this answer


























    • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

      – Daniel_Ranjbar
      Nov 21 '18 at 10:47



















    1















    Unreachable code detected




    Well that's cause you are assigning to your Textbox after the return statement which will never reach. it's a event handler and thus should of void type since event handler doesn't return anything.



    private void ConfirmForm_Load(object sender, EventArgs e)
    {
    string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
    var sqlcmd = new SqlCommand(selectQuery, sqlcon);
    var result = sqlcmd.ExecuteScalar();
    this.TotalCostTextBox1.Text = result.ToString();


    Considering TotalCostTextBox1 is the instance name of the TotalCostTextBox1 control






    share|improve this answer


























    • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

      – Daniel_Ranjbar
      Nov 21 '18 at 10:47











    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%2f53409359%2fhow-to-use-executescalar-to-get-a-value-and-give-it-to-your-textbox-text%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    You need to place below assignment statement before return



    TotalCostTextBox1.Text = result.ToString();


    Your final code should be like below code:



    private void ConfirmForm_Load(object sender, EventArgs e)
    {
    string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
    var sqlcmd = new SqlCommand(selectQuery, sqlcon);
    var result = sqlcmd.ExecuteScalar();
    TotalCostTextBox1.Text = result.ToString();
    //return int.Parse(result.ToString());
    }


    Also you need to check the event binding with ConfirmForm_Load function. To verify this please check if following line is available in ConfirmForm.Designer.cs



    this.Load += new System.EventHandler(this.ConfirmForm_Load);





    share|improve this answer




























      1














      You need to place below assignment statement before return



      TotalCostTextBox1.Text = result.ToString();


      Your final code should be like below code:



      private void ConfirmForm_Load(object sender, EventArgs e)
      {
      string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
      var sqlcmd = new SqlCommand(selectQuery, sqlcon);
      var result = sqlcmd.ExecuteScalar();
      TotalCostTextBox1.Text = result.ToString();
      //return int.Parse(result.ToString());
      }


      Also you need to check the event binding with ConfirmForm_Load function. To verify this please check if following line is available in ConfirmForm.Designer.cs



      this.Load += new System.EventHandler(this.ConfirmForm_Load);





      share|improve this answer


























        1












        1








        1







        You need to place below assignment statement before return



        TotalCostTextBox1.Text = result.ToString();


        Your final code should be like below code:



        private void ConfirmForm_Load(object sender, EventArgs e)
        {
        string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
        var sqlcmd = new SqlCommand(selectQuery, sqlcon);
        var result = sqlcmd.ExecuteScalar();
        TotalCostTextBox1.Text = result.ToString();
        //return int.Parse(result.ToString());
        }


        Also you need to check the event binding with ConfirmForm_Load function. To verify this please check if following line is available in ConfirmForm.Designer.cs



        this.Load += new System.EventHandler(this.ConfirmForm_Load);





        share|improve this answer













        You need to place below assignment statement before return



        TotalCostTextBox1.Text = result.ToString();


        Your final code should be like below code:



        private void ConfirmForm_Load(object sender, EventArgs e)
        {
        string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
        var sqlcmd = new SqlCommand(selectQuery, sqlcon);
        var result = sqlcmd.ExecuteScalar();
        TotalCostTextBox1.Text = result.ToString();
        //return int.Parse(result.ToString());
        }


        Also you need to check the event binding with ConfirmForm_Load function. To verify this please check if following line is available in ConfirmForm.Designer.cs



        this.Load += new System.EventHandler(this.ConfirmForm_Load);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 '18 at 10:55









        Brijesh Kumar TripathiBrijesh Kumar Tripathi

        14519




        14519

























            2














            The return type of your method is int, this is why you are getting error. You can change your method return type to void and remove the return keyword:



            private void ConfirmForm_Load


            And



            var result = sqlcmd.ExecuteScalar();
            int x = int.Parse(result.ToString());
            TotalCostTextBox1.Text = x.ToString();





            share|improve this answer


























            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47
















            2














            The return type of your method is int, this is why you are getting error. You can change your method return type to void and remove the return keyword:



            private void ConfirmForm_Load


            And



            var result = sqlcmd.ExecuteScalar();
            int x = int.Parse(result.ToString());
            TotalCostTextBox1.Text = x.ToString();





            share|improve this answer


























            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47














            2












            2








            2







            The return type of your method is int, this is why you are getting error. You can change your method return type to void and remove the return keyword:



            private void ConfirmForm_Load


            And



            var result = sqlcmd.ExecuteScalar();
            int x = int.Parse(result.ToString());
            TotalCostTextBox1.Text = x.ToString();





            share|improve this answer















            The return type of your method is int, this is why you are getting error. You can change your method return type to void and remove the return keyword:



            private void ConfirmForm_Load


            And



            var result = sqlcmd.ExecuteScalar();
            int x = int.Parse(result.ToString());
            TotalCostTextBox1.Text = x.ToString();






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 21 '18 at 16:24

























            answered Nov 21 '18 at 9:55









            S.AkbariS.Akbari

            30.3k93673




            30.3k93673













            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47



















            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47

















            Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

            – Daniel_Ranjbar
            Nov 21 '18 at 10:47





            Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works. thank you...

            – Daniel_Ranjbar
            Nov 21 '18 at 10:47











            1















            Unreachable code detected




            Well that's cause you are assigning to your Textbox after the return statement which will never reach. it's a event handler and thus should of void type since event handler doesn't return anything.



            private void ConfirmForm_Load(object sender, EventArgs e)
            {
            string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
            var sqlcmd = new SqlCommand(selectQuery, sqlcon);
            var result = sqlcmd.ExecuteScalar();
            this.TotalCostTextBox1.Text = result.ToString();


            Considering TotalCostTextBox1 is the instance name of the TotalCostTextBox1 control






            share|improve this answer


























            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47
















            1















            Unreachable code detected




            Well that's cause you are assigning to your Textbox after the return statement which will never reach. it's a event handler and thus should of void type since event handler doesn't return anything.



            private void ConfirmForm_Load(object sender, EventArgs e)
            {
            string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
            var sqlcmd = new SqlCommand(selectQuery, sqlcon);
            var result = sqlcmd.ExecuteScalar();
            this.TotalCostTextBox1.Text = result.ToString();


            Considering TotalCostTextBox1 is the instance name of the TotalCostTextBox1 control






            share|improve this answer


























            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47














            1












            1








            1








            Unreachable code detected




            Well that's cause you are assigning to your Textbox after the return statement which will never reach. it's a event handler and thus should of void type since event handler doesn't return anything.



            private void ConfirmForm_Load(object sender, EventArgs e)
            {
            string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
            var sqlcmd = new SqlCommand(selectQuery, sqlcon);
            var result = sqlcmd.ExecuteScalar();
            this.TotalCostTextBox1.Text = result.ToString();


            Considering TotalCostTextBox1 is the instance name of the TotalCostTextBox1 control






            share|improve this answer
















            Unreachable code detected




            Well that's cause you are assigning to your Textbox after the return statement which will never reach. it's a event handler and thus should of void type since event handler doesn't return anything.



            private void ConfirmForm_Load(object sender, EventArgs e)
            {
            string selectQuery = "SELECT Sum(RowTotalColumn) FROM InvoiceTable";
            var sqlcmd = new SqlCommand(selectQuery, sqlcon);
            var result = sqlcmd.ExecuteScalar();
            this.TotalCostTextBox1.Text = result.ToString();


            Considering TotalCostTextBox1 is the instance name of the TotalCostTextBox1 control







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 28 '18 at 9:12









            S.Akbari

            30.3k93673




            30.3k93673










            answered Nov 21 '18 at 10:04









            RahulRahul

            62.5k124482




            62.5k124482













            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47



















            • Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

              – Daniel_Ranjbar
              Nov 21 '18 at 10:47

















            Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

            – Daniel_Ranjbar
            Nov 21 '18 at 10:47





            Ok I got it its okay I had manipulated something unintentionally in the designer.cs now it works.Thank you buddy...

            – Daniel_Ranjbar
            Nov 21 '18 at 10:47


















            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%2f53409359%2fhow-to-use-executescalar-to-get-a-value-and-give-it-to-your-textbox-text%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

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

            How to fix TextFormField cause rebuild widget in Flutter