Search Results
https://dev.mysql.com/doc/apis-php/en/apis-php-introduction.html
It is available for most operating systems and Web servers, and can access most common databases, including MySQL. PHP is a server-side, HTML-embedded scripting language that may be used to create dynamic Web pages. PHP may be run as a separate ...
https://dev.mysql.com/doc/connector-net/en/connector-net-medium-trust-gac.html
Configure the MySQL server to accept pipe connections, by adding the --enable-named-pipe option on the command line. Edit your web.config file so that your application runs using a Medium trust level: <system.web> <trust level="Medium"/> ...After ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-without-dsn.html
You can connect to the MySQL server using SQLDriverConnect, by specifying the DRIVER name field. Here are the connection strings for Connector/ODBC using DSN-less connections: For Connector/ODBC 9.5: ConnectionString = "DRIVER={MySQL ODBC 9.5 ...If ...
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-odbc/en/connector-odbc-versions.html
The latest version of Connector/ODBC supports all active MySQL Server versions, which today includes MySQL Server 8.0 and higher. As an example, use Connector/ODBC 9.5.0 with MySQL Server 8.0, 8.4, and 9.5. Information about each Connector/ODBC ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html
This enables applications to support pools of connections to different MySQL servers, for example. Applications that can benefit from connection-pooling capability include: Middleware that maintains multiple connections to multiple MySQL servers and ... Simple connection pooling is supported that has these characteristics: The mysql.connector.pooling module implements ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
In a MySQL server, tables are very long-lived objects, and are often accessed by multiple applications written in different languages. cnx = mysql.connector.connect(user='scott') cursor = cnx.cursor() A single MySQL server can manage multiple ...
https://dev.mysql.com/doc/internals/en/binlog-event-header.html
Binlog::EventHeader: Binlog header Payload 4 timestamp 1 event type 4 server-id 4 event-size if binlog-version > 1: 4 log pos 2 flags Fields timestamp (4) -- seconds since unix epoch event_type (1) -- see Binlog Event Type server_id (4) -- server-id ... The binlog event header starts each event and is either 13 or 19 bytes long, depending on the binlog ...
https://dev.mysql.com/doc/internals/en/com-binlog-dump-gtid.html
If the binlog-filename is empty, the server will send the binlog-stream of the first known binlog.
https://dev.mysql.com/doc/internals/en/com-query.html
COM_QUERY: A COM_QUERY is used to send the server a text-based query that is executed immediately. The server replies to a COM_QUERY packet with a COM_QUERY Response. The length of the query-string is a taken from the packet length - 1.