Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-connectargs.html
Protocol Compression The boolean compress argument indicates whether to use the compressed client/server protocol (default False). A connection with the MySQL server can be established using either the mysql.connector.connect() function or the ...
https://dev.mysql.com/doc/connectors/en/connector-python-opentelemetry.html
Disabling Trace Context Propagation The boolean connection property named otel_context_propagation is True by default. MySQL Server added OpenTelemetry support in MySQL Enterprise Edition version 8.1.0, which is a commercial product. Introduction ...
https://dev.mysql.com/doc/connectors/en/connector-python-option-files.html
This allows specifying values like numbers, tuples, lists, and booleans in the option files. (For general information about option files in MySQL, see Using Option Files.) Two arguments for the connect() call control use of option files in ...
https://dev.mysql.com/doc/connector-odbc/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/connector-odbc/en/connector-odbc-opentelemetry.html
For applications on Linux systems that use OpenTelemetry (OTel) instrumentation, the connector adds query and connection spans to the trace generated by application code and forwards the current OpenTelemetry context to the server. Note OTel ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-buffered.html
Syntax: is_buffered = ccnx.buffered() # getter ccnx.buffered(bool) # setter With no argument, returns True or False to indicate whether the MySQL instance buffers (stores) the results. For the setter syntax, raises a TypeError exception if the ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-raw.html
Syntax: is_raw = ccnx.raw() # getter ccnx.raw(bool) # setter With no argument, returns True or False to indicate whether the MySQL instance return the rows as is (without conversion to Python objects).
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-use-unicode.html
With a boolean argument, sets whether the MySQL instance returns nonbinary strings as Unicode. Syntax: is_unicode = ccnx.use_unicode() # getter ccnx.use_unicode(bool) # setter With no argument, returns True or False to indicate whether the MySQL ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-with-rows.html
Syntax: boolean = cursor.with_rows This read-only property returns True or False to indicate whether the most recently executed operation could have produced rows. The with_rows property is useful when it is necessary to determine whether a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
Protocol Compression The boolean compress argument indicates whether to use the compressed client/server protocol (default False). A connection with the MySQL server can be established using either the mysql.connector.connect() function or the ...