
04/11/2004, 09:58
|
| | Fecha de Ingreso: septiembre-2004
Mensajes: 141
Antigüedad: 20 años, 6 meses Puntos: 0 | |
cual es la diferencia???? en esto no entiendo estoy trabajando
con varios dropdown y quiero pasar fechas y otros parametros mas
lo estoy haciendo super simple con esto
Dim DS As DataSet
Dim MyCommand As SqlDataAdapter
Dim myConnection As New SqlConnection("server=(local);database=Callcenter_ net;Trusted_Connection=yes")
MyCommand = New SqlDataAdapter("select * from estado where id_est='" + dia.SelectedItem.Value + "' and nom_est='" + nom.SelectedItem.Value + "'", myConnection)
DS = new DataSet()
MyCommand.Fill(DS, "nom_est")
MyList.DataSource = DS.Tables("nom_est").DefaultView
MyList.DataBind()
pero encontre que tambien se peude hacer con estos otros comandos
myCommand.SelectCommand.Parameters.Add(New SqlParameter("@State", SqlDbType.NVarChar, 2))
myCommand.SelectCommand.Parameters("@State").Value = MySelect.Value
cuales la diferencia??????????????????????????????????
quien me explica'''''''' |