Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-using-character-sets.html
To try and alleviate this, MySQL Connector/NET supports a mode where binary blobs can be treated as strings. To do this, you set the 'Treat Blobs As UTF8' connection string keyword to true. Treating Binary Blobs As UTF8 Before the introduction of ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn.html
Generally, a DSN consists of the following parameters: Name Host Name Database Name Login Password In addition, different ODBC drivers, including Connector/ODBC, may accept additional driver-specific options and parameters. A User DSN is specific to ... A Data Source Name associates the configuration parameters for communicating with a specific ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration.html
Before you connect to a MySQL database using the Connector/ODBC driver, you configure an ODBC Data Source Name (DSN). The DSN associates the various configuration parameters required to communicate with a database to a specific name. You use the ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming.html
With a suitable ODBC Manager and the Connector/ODBC driver installed, any programming language or environment that can support ODBC can connect to a MySQL database through Connector/ODBC. This includes, but is not limited to, Microsoft support ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-windows.html
Before installing the Connector/ODBC drivers on Windows: Make sure your Microsoft Data Access Components (MDAC) are up to date. The MSI package bundles OpenSSL libraries used by Connector/ODBC while the Zip Archive does not and requires that you ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-coldfusion.html
The following information is taken from the ColdFusion documentation: Use the following information to configure ColdFusion Server for Linux to use the unixODBC driver with Connector/ODBC for MySQL data sources. Before the MySQL driver appears in ...ColdFusion version 4.5.1 lets you use the ColdFusion Administrator to add the MySQL data ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-operationalerror.html
For example: too many connections; a host name could not be resolved; bad handshake; server is shutting down, communication errors. This exception is raised for errors which are related to MySQL's operations.
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-poolerror.html
This exception is raised for connection pool errors. errors.PoolError is a subclass of errors.Error. ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-warning.html
This exception is used for reporting important warnings, however, Connector/Python does not use it. Consider using either more strict Server SQL Modes or the raise_on_warnings connection argument to make Connector/Python raise errors when your ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-fieldtype.html
This class provides all supported MySQL field or data types. They can be useful when dealing with raw data or defining your own converters. The field type is stored with every cursor in the description for each column. The following example shows ...