Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-blob-clob-processing.html
blobSendChunkSize Chunk size to use when sending BLOB/CLOBs via server-prepared statements. Note that this value cannot exceed the value of 'maxAllowedPacket' and, if that is the case, then this value will be corrected automatically. Since Version ...
Connectors and APIs Manual :: 3.5.12.4 Connecting Using Web Authentication (WebAuthn) Authentication
https://dev.mysql.com/doc/connectors/en/connector-j-WebAuthn-authentication.html
Web Authentication (WebAuthn) enables user authentication for MySQL Server using devices such as smart cards, security keys, and biometric readers. WebAuthn enables passwordless authentication, and can be used for MySQL accounts that use ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-string.html
In each key-value pair, the option name and its corresponding value are joined by an equal sign. For the list of option names to use in the connection string, see Section 4.4.5, “Connector/NET Connection Options Reference”. The following is a ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob-serverprep.html
For this example, use the following table definition: CREATE TABLE file( file_id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, file_name VARCHAR(64) NOT NULL, file_size MEDIUMINT UNSIGNED NOT NULL, file MEDIUMBLOB NOT NULL); After creating ... The first step is using MySQL with BLOB data is to configure the ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-ssl-pem.html
Because this tutorial sets the SslMode option to VerifyFull, you must also provide values for the SslCa, SslCert, and SslKey connection options. "SslCa=ca.pem;" + "SslCert=client-cert.pem;" + "SslKey=client-key.pem;")) Alternatively, if you set the ... The direct use of PEM format certificates was introduced to simplify certificate management in multiplatform environments that include similar MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-errors.html
In most cases, this can be solved by doing one of the following things: Add a primary key for the table if one doesn't exist. This error may be related to Keyboard Logger 1.1 from PanteraSoft.com, which is known to interfere with the network ... The ...
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
Include a primary key in each MySQL table you want to use with Access. 5.8.2.1.3 Microsoft Visual Basic To be able to update a table, you must define a primary key for the table. The majority of Microsoft applications have been tested with ...
https://dev.mysql.com/doc/connectors/en/connector-python-asyncio.html
Installing Connector/Python also installs the mysql.connector.aio package that integrates asyncio with the connector to allow integrating asynchronous MySQL interactions with an application. Functions included in the asyncio API must be used to ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-transaction.html
The second INSERT depends on the value of the newly created primary key of the first. The AUTO_INCREMENT column option for the primary key of the employees table is important to ensure reliable, easily searchable data. Inserting or updating data is ...