Bonjour, j'assaie d'inserer des champs dans la base de donnée mais ce n'a pas marché s'il vous si quelqu'un peut m'aider merci. voila le code: je signal que je travaille avec C# sous visual studio 2008 protected void Button6_Click(object sender, EventArgs e) { string strConnexion = "Data Source=localhost; Integrated Security=SSPI;" + "Initial Catalog=Northwind"; try { SqlConnection oConnection = new SqlConnection(strConnexion);
SqlCommand cmd = new SqlCommand("INSERT INTO matable values ('" + name + "','" + prenom + "','" + tel + "','" + fax + "','" + poste + "','" + commentaire + "')", oConnection); oConnection.Close(); }
Marsh Posté le 05-08-2009 à 15:07:54
Bonjour,
j'assaie d'inserer des champs dans la base de donnée mais ce n'a pas marché s'il vous si quelqu'un peut m'aider merci.
voila le code: je signal que je travaille avec C# sous visual studio 2008
protected void Button6_Click(object sender, EventArgs e)
{
string strConnexion = "Data Source=localhost; Integrated Security=SSPI;" + "Initial Catalog=Northwind";
try
{
SqlConnection oConnection = new SqlConnection(strConnexion);
SqlCommand cmd = new SqlCommand("INSERT INTO matable values ('" + name + "','" + prenom + "','" + tel + "','" + fax + "','" + poste + "','" + commentaire + "')", oConnection);
oConnection.Close();
}
catch( )
{
ici je sais pas quoi mettre !!!
}
}
}