Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7568089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:50:07+00:00 2026-05-30T14:50:07+00:00

My code is working perfectly, it says the row was saved but when I

  • 0

My code is working perfectly, it says the row was saved but when I take a look in the database no row was saved. Can you help me please?

I want to save a row using a stored procedures, the checkifusernameexist is working but the save function do not save the data.

Here’s my code, hope you can understand it.

using System;
using System.Data;
using System.Configuration;
using System.Data.SqlClient;
using System.ComponentModel;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;
using System.IO;

namespace storedprocedures
{
    public partial class Login : System.Web.UI.Page
    {
        public string GetConnectionString()
        {
            return System.Configuration.ConfigurationManager.ConnectionStrings["practiceDatabaseConnectionString"].ConnectionString;
        }

        private void executeAdd(string username, string password)
        {
            SqlConnection conn = new SqlConnection(GetConnectionString());
            conn.Open();

            SqlCommand cmd = new SqlCommand("usp_CreateUser", conn);
            cmd.CommandType = CommandType.StoredProcedure;
            SqlParameter p1 = new SqlParameter("userName",userName.Text);
            SqlParameter p2 = new SqlParameter("password",password.ToString());
            cmd.Parameters.Add(p1);
            cmd.Parameters.Add(p2);

            SqlDataReader dReader = cmd.ExecuteReader();

            if (dReader.HasRows)
            {
                dReader.Read();     
                Label3.Text="Record Added!";
            }
            else
            {
                Label3.Text="User Error";
            }
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(GetConnectionString());
            con.Open();

            SqlCommand cmd = new SqlCommand("usp_CheckIfUserNameExist",con);
            cmd.CommandType = CommandType.StoredProcedure;
            SqlParameter p1 = new SqlParameter("userName", userName.Text);
            cmd.Parameters.Add(p1);
            SqlDataReader dReader = cmd.ExecuteReader();

            if (dReader.HasRows)
            {
                dReader.Read();
                this.Label3.ForeColor = System.Drawing.Color.Red;
                this.Label3.Text = "Username already exist!";
            }
            else
            {
                this.Label3.Text = "congrats! nanalo ka na!";
                this.userName.Text = "";
                this.password.Text = "";
            }
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:50:09+00:00Added an answer on May 30, 2026 at 2:50 pm

    Use cmd.ExecuteNonQuery() for adding records.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Struggling with this tournament fixtures algorithm. The code is working perfectly but I need
The below is my code. All my button functions are working perfectly, but if
I have a pretty typical bookmarklet code that's working perfectly for me in all
I am using the below code to block the taskbar which is working perfectly.
I'm new to Django but I seem to have nearly identical code working on
My code is working perfectly to reduce the size of a UITextView when the
The code I'm working on runs perfectly on Windows XP and on Mac OS
I'd like to start by saying that my code is working perfectly, this is
This code is working perfectly: $(document).ready(function() { $(#submit).click(function(){ $(#output).load(extract.php, {query: $(#input).val()} ); }); });
My code is working perfectly as desired in firefox(TEXT1 on top of TEXT2) and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.