Search Results
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-net/en/connector-net-programming-tracing-mysql-custom-listeners.html
To build custom listeners that work with the MySQL Connector/NET Trace Source, it is necessary to understand the key methods used, and the event data formats used. The main method involved in passing trace messages is the TraceSource.TraceEvent ...
https://dev.mysql.com/doc/connector-net/en/connector-net-ref-efcore.html
Enumerations Enumeration Description MySQLMatchSearchMode Performs a search against a text collection. MySql.EntityFrameworkCore.Infrastructure Namespace Classes Class Description MySQLDbContextOptionsBuilder Represents the ... Namespaces in this ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-parameters.html
For example, imagine the following query was constructed from user input: string sql = "SELECT Name, HeadOfState FROM Country WHERE Continent = "+user_continent; If the string user_continent came from a Text Box control, there would potentially be ... This part of the tutorial shows you how to use parameters in your MySQL Connector/NET ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-parameters.html
ENABLE_CLEARTEXT_PLUGIN Enable Cleartext Authentication 0 Set to 1 to enable cleartext authentication. However, the numerical option value in the connection string can only enable, but not disable parameters enabled on the DSN, which can only be ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-windows-5-2.html
In the Description box, enter some text to help identify the connection. The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions such as tracing (used for debugging) and connection ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-ado.html
The following ADO (ActiveX Data Objects) example creates a table my_ado and demonstrates the use of rs.addNew, rs.delete, and rs.update. rs.Open "SELECT * FROM my_ado" rs!Name = "update" rs!txt = "updated-second-time" rs.Update rs.Close 'rs delete ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-api.html
(“Out” and “inout” parameters are not supported for LONGTEXT and LONGBLOB columns.) SQLGetCursorName Yes ISO 92 Returns the cursor name associated with a statement handle. SQLExecDirect Yes ISO 92 Executes a statement SQLNativeSql Yes ODBC ...For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-datatypes.html
The following table illustrates how Connector/ODBC maps the server data types to default SQL and C data types.
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-access.html
If you want to have MEMO columns instead, change BLOB columns to TEXT with ALTER TABLE. To improve the integration between Microsoft Access and MySQL through Connector/ODBC: For all versions of Access, enable the Connector/ODBC Return matching rows ...