Click here to Skip to main content
15,885,869 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Team Code Project

I have one question, how i can connect an database (SQL server) to update registry.

For example, I finish the code asp to Windows Forms, in my DB have row called "IDTipoApoyoEconomico" with information in "NULL"

The principal issue, I want when the finally user selection the checkbox in the page and last press button "send". Automatically the information got the DB and update the registrys of the column "IDTipoApoyoEconomico".

The general message is how connect DB in my ASP, Im new in this language ASP and SQL server.

Code DB


UPDATE BeneficiarioControl
SET IDTipoApoyoEconomico...
...



Juan Francisco Hernández Zavala
Posted
Comments
Juan Francisco Hernandez Zavala 11-Dec-12 16:21pm    
Hi Mohanraja, Your answer is correct but this solutions i had implement in my code. You have another solution BUT SQL server.

For example

UPDATE BeneficiarioControl
SET IDTipoApoyoEconomico...

1 solution

Hi Juan,

Here the steps to connect with Sqlserver.

Web.Config
XML
<connectionStrings>
    <remove name="CON"/>
    <add name="CON" providerName="System.Data.SqlClient" connectionString="server=YourServerName;database=YourDBName;uid=YourUserID;password=YourPwd;"/>
</connectionStrings>

.cs
C#
static string constr = ConfigurationManager.ConnectionStrings["CON"].ConnectionString.ToString();

        SqlConnection con = new SqlConnection(constr);
        SqlCommand cmd;
        cmd = new SqlCommand("YourProcedureName", con);
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.AddWithValue("@QryId", "UPDATE");
        cmd.Parameters.AddWithValue("@Price", Param1);
        cmd.Parameters.AddWithValue("@Option", Param2);
        if (CurrDate != DateTime.MinValue)
        {
            cmd.Parameters.AddWithValue("@CurrDate", Param3);
        }
        else
        {
            cmd.Parameters.AddWithValue("@CurrDate", System.Data.SqlTypes.SqlDateTime.Null);
        }
        con.Open();
        result = cmd.ExecuteScalar().ToString();
        cmd.Parameters.Clear();
        cmd.Dispose();
        con.Close();

For More Connections String, please check the following link: http://www.connectionstrings.com/[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900