27/07/2006, 00:30
|
| | Fecha de Ingreso: mayo-2006
Mensajes: 178
Antigüedad: 18 años, 7 meses Puntos: 3 | |
Hay algun ejemplo de clase para trabajar con parametros en SQLServer?
Sin parametros me parece facil.
En la clase:
----------------------------------------------------------
public bool InsertFields()
{
string strCon = this.GetStringConection().ConnectionString;
System.Data.SqlClient.SqlConnection oCon = new System.Data.SqlClient.SqlConnection(strCon);
SqlCommand myCommand = new SqlCommand(this.INSERT_COMMAND.CommandText, this.GetStringConection());
try
{
myCommand.Connection.Open();
myCommand.ExecuteNonQuery();
return true;
}
catch(System.Exception ex)
{
this.ERROR = ex.ToString();
return false;
}
finally
{
oCon.Close();
}
}
en el fichero aspx.cs
--------------------------------------------------
private void cmdInsertar_Click(object sender, System.EventArgs e)
{
System.Data.SqlClient.SqlCommand insert =
new System.Data.SqlClient.SqlCommand("INSERT INTO Personas(Nombre, Direccion, Telefono, Sexo, Escolaridad) VALUES('"
+ this.txtNombre.Text + "','" + this.txtDireccion.Text + "','" + this.txtTel.Text
+ "'," + this.rdbSexo.SelectedValue.ToString() + "," + this.cmbEscolaridad.SelectedValue.ToString() + ")");
oCon.INSERT_COMMAND = insert;
bool status = oCon.InsertFields();
}
ALGUIEN TIENE IDEA DE COMO CON PARAMETROS???. TENGO QUE HACER CONTINUAMENTE INSERCCIONES,.... CUALQUIERA COSA SERÍA DE AYUDA. |