i want 2 pass values(enterd in textbox)to table in sql
server without using stored procedure in c#.plz tell me
code with an example.

Answer Posted / bala

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;


namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

}

private void button1_Click(object sender, EventArgs
e)
{
String ConnectionString = "Data
Source=ServerName;Initial Catalog=DatabaseName;Integrated
Security=true";
String Query = "insert into tablename values('"
+ textBox1.Text + "')";
SqlConnection Con = new SqlConnection
(ConnectionString) ;
Con.Open();
SqlCommand Cmd = new SqlCommand(Query, Con);
Cmd.ExecuteNonQuery();
Cmd.Dispose();
Con.Close();

}
}
}

Is This Answer Correct ?    10 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different ado.net namespaces are available in .net?

730


What is the use of data grid?

683


How do you implement locking concept for dataset?

732


Can datareader hold data from multiple tables?

847


What is ado circle?

852


What is difference in record set and dataset?

714


What is disconnected data?

759


What are the pre-requisites for connection pooling?

714


What is ole in vb?

668


Explain how to pass multiple tables in datasets simultaneously?

735


What is data view and variable view?

656


Explain executenonquery?

782


What are the 3 major types of connection objects in ado.net?

739


What is a datareader object?

794


What are the ado.net connection pooling parameters?

639