Progress Monitor for IdealProgrammer.com
Take Swift, Intelligent, Massive, Planned, Loving, Effective (S.I.M.P.L.E.) Action to Transform Self into Ideal
Skip Repetitive Navigational Links
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console
Please login
C#
Description:
Illustrates using Sql Parameters with Insert Statement.
Example Class Main:
using System; using System.Data; using System.Data.SqlClient; class clsSqlParametersInsert { public void Main() { SqlConnection thisConnection = new SqlConnection("server=.\\SQLEXPRESS;" + "integrated security=sspi;database=Northwind"); //Create Command object SqlCommand nonqueryCommand = thisConnection.CreateCommand(); try { // Open Connection thisConnection.Open(); Console.WriteLine("Connection Opened"); // Create INSERT statement with named parameters nonqueryCommand.CommandText = "INSERT INTO Employees (FirstName, LastName) VALUES (@FirstName, @LastName)"; // Add Parameters to Command Parameters collection nonqueryCommand.Parameters.Add("@FirstName", SqlDbType.VarChar, 10); nonqueryCommand.Parameters.Add("@LastName", SqlDbType.VarChar, 20); // Prepare command for repeated execution nonqueryCommand.Prepare(); // Data to be inserted string[] names = { "Wade", "David", "Charlie" }; for (int i = 0; i < = 2; i++) { nonqueryCommand.Parameters["@FirstName"].Value = names[i]; nonqueryCommand.Parameters["@LastName"].Value = names[i]; Console.WriteLine("Executing {0}", nonqueryCommand.CommandText); Console.WriteLine("Number of rows affected : {0}", nonqueryCommand.ExecuteNonQuery()); } } catch (SqlException ex) { // Display error Console.WriteLine("Error: " + ex.ToString()); } finally { // Close Connection thisConnection.Close(); Console.WriteLine("Connection Closed"); } Console.ReadLine(); } }
Example Class Program:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CSharp_Syntax { class Program { static void Main(string[] args) { //DatabaseADONET clsSqlParametersInsert mySqlParametersInsert = new clsSqlParametersInsert(); mySqlParametersInsert.Main(); } } }
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console