
18/03/2004, 14:51
|
| | Fecha de Ingreso: abril-2003
Mensajes: 606
Antigüedad: 21 años, 10 meses Puntos: 2 | |
Overload List
Initializes a new instance of the SqlDataAdapter class.
Supported by the .NET Compact Framework.
[Visual Basic] Public Sub New()
[C#] public SqlDataAdapter();
[C++] public: SqlDataAdapter();
[JScript] public function SqlDataAdapter();
Initializes a new instance of the SqlDataAdapter class with the specified SqlCommand as the SelectCommand property.
Supported by the .NET Compact Framework.
[Visual Basic] Public Sub New(SqlCommand)
[C#] public SqlDataAdapter(SqlCommand);
[C++] public: SqlDataAdapter(SqlCommand*);
[JScript] public function SqlDataAdapter(SqlCommand);
Initializes a new instance of the SqlDataAdapter class with a SelectCommand and a SqlConnection object.
Supported by the .NET Compact Framework.
[Visual Basic] Public Sub New(String, SqlConnection)
[C#] public SqlDataAdapter(string, SqlConnection);
[C++] public: SqlDataAdapter(String*, SqlConnection*);
[JScript] public function SqlDataAdapter(String, SqlConnection);
Initializes a new instance of the SqlDataAdapter class with a SelectCommand and a connection string.
Supported by the .NET Compact Framework.
[Visual Basic] Public Sub New(String, String)
[C#] public SqlDataAdapter(string, string);
ODBC debe tener sus propios constructores sobre cargados y ahi especificas la conexion |