Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-medium-trust-gac.html
myconnString.IncludeSecurityAsserts = true; Define the MySqlConnection to use: MySqlConnection myconn = new MySqlConnection(myconnString.ConnectionString); myconn.Open(); Retrieve some data from your tables: MySqlCommand cmd = new ... If the library ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-bulk-loader.html
MySQL Connector/NET features a bulk loader class that wraps the MySQL statement LOAD DATA INFILE. This gives Connector/NET the ability to load a data file from a local or remote host to the server, or a stream to a database (from Connector/NET ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-stored-procedures.html
Putting database-intensive operations into stored procedures lets you define an API for your database application. You can reuse this API across multiple applications and multiple programming languages. This technique avoids duplicating database ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-web-personalization-provider.html
The next figure shows Catalog selected from the drop-down list, which include the Catalog Zone control that was added previously. MySQL Connector/NET provides a web parts personalization provider that allows you to use a MySQL server to store ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-architecture.html
These tasks are: Selecting the MySQL server and connecting to it. The Connector/ODBC architecture is based on five components, as shown in the following diagram: Figure 5.1 Connector/ODBC Architecture Components Application: The Application uses ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-connection-parameters.html
On Unix and macOS, use the parameter name and value as the keyword/value pair in the DSN configuration. Alternatively, you can set these parameters within the InConnectionString argument in the SQLDriverConnect() call. Table 5.1 Connector/ODBC DSN ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-macos.html
To configure a DSN on macOS, you can either use the command-line utility (myodbc-installer), edit the odbc.ini file within the Library/ODBC directory of the user, or use the ODBC Administrator GUI. Note The ODBC Administrator is included in OS X ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-overview.html
For SELECT / SHOW / Catalog API the results might include: get number of columns, get column information, fetch rows, and get the data to buffers. Interacting with a MySQL server from an applications using the Connector/ODBC typically involves the ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-source-unix.html
Dynamic linking with the MySQL client library is selected by default—that is, the MYSQLCLIENT_STATIC_LINKING cmake option is FALSE by default (however, the binary distributions of Connector/ODBC from Oracle are linked statically to the client ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-source-windows.html
You only need to build Connector/ODBC from source on Windows to modify the source or installation location. If you are unsure whether to install from source, please use the binary installation detailed in Section 5.4.1, “Installing Connector/ODBC ...