Search



Search Results
Displaying 301 to 310 of 509 total results
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming-vb.html
This section contains simple examples of the use of Connector/ODBC with ADO, DAO and RDO. 5.6.7.1.1 ADO: rs.addNew, rs.delete, and rs.update The following ADO (ActiveX Data Objects) example creates a table my_ado and demonstrates the use of ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
5.8.2.1.1 Microsoft Access To improve the integration between Microsoft Access and MySQL through Connector/ODBC: For all versions of Access, enable the Connector/ODBC Return matching rows option. The majority of Microsoft applications have been ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysql-connector-threadsafety.html
This property is an integer that indicates the supported level of thread safety provided by Connector/Python.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-connection-id.html
This property returns the integer connection ID (thread ID or session ID) for the current connection or None when not connected.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-server-port.html
This read-only property returns the TCP/IP port used for connecting to the MySQL server.
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-blob-reading.html
The GetOrdinal method of the MySqlDataReader can be used to determine the integer index of a named column. After a file is loaded into the file table, we can use the MySqlDataReader class to retrieve it. The GetBytes method of the MySqlDataReader ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-bulk-loader.html
CREATE TABLE Career ( Name VARCHAR(100) NOT NULL, Age INTEGER, Profession VARCHAR(200) ); A simple tab-delimited data file is also created (it could use any other field delimiter such as comma). MySQL Connector/NET features a bulk loader class that ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-errors.html
It means, if you insert a NULL value into the column, you will get the next integer value for the table's auto_increment counter. The following section details some common errors and their suggested fix or alternative solution. If you are still ...
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/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 ...
Displaying 301 to 310 of 509 total results