Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-programming-getschema.html
The GetSchema() method of the connection object can be used to retrieve schema information about the database currently connected to. The schema information is returned in the form of a DataTable. Different forms of the GetSchema() method can be ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-getschema.html
The GetSchema() method of the connection object can be used to retrieve schema information about the database currently connected to. The schema information is returned in the form of a DataTable. Different forms of the GetSchema() method can be ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-vb.html
The following sample creates a table my_vb_net and demonstrates the use in VB.
https://dev.mysql.com/doc/connectors/en/connector-net-programming-datetime-invalid.html
The MySqlDateTime data type supports the same date values that are supported by the MySQL server. Although it is strongly recommended that you avoid the use of invalid dates within your .NET application, it is possible to use invalid dates by means ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-tablecaching.html
This is useful for applications that are designed to use readers, but still want to minimize trips to the server for slow-changing tables. Table caching is a feature that can be used to cache slow-changing datasets on the client side. This feature ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-datetime-invalid.html
The MySqlDateTime data type supports the same date values that are supported by the MySQL server. Although it is strongly recommended that you avoid the use of invalid dates within your .NET application, it is possible to use invalid dates by means ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tablecaching.html
This is useful for applications that are designed to use readers, but still want to minimize trips to the server for slow-changing tables. Table caching is a feature that can be used to cache slow-changing datasets on the client side. This feature ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-csharp.html
The following sample creates a table my_odbc_net and demonstrates its use in C#. { for (int i=0; i < MyOdbcException.Errors.Count; i++) { Console.Write("ERROR #" + i + "\n" + "Message: " + MyOdbcException.Errors[i].Message + "\n" + "Native: " + ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-dao.html
The following DAO (Data Access Objects) example creates a table my_dao and demonstrates the use of rs.addNew, rs.update, and result set scrolling. Set rs = conn.OpenRecordset("my_dao") rs.Edit rs!Name = "updated-string" rs.Update rs.Close 'fetch ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-rdo.html
The following RDO (Remote Data Objects) example creates a table my_rdo and demonstrates the use of rs.addNew and rs.update. SQL = "select * from my_rdo" Set rs = cn.OpenResultset(SQL, rdOpenStatic, rdConcurRowVer, rdExecDirect) Do Until rs.EOF For ...