Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-transaction.html
When you use a transactional storage engine such as InnoDB (the default in MySQL 5.5 and higher), you must commit the data after a sequence of INSERT, DELETE, and UPDATE statements. We then create a new cursor, by default a MySQLCursor object, using ... Inserting or updating data is also done using the handler structure known as a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-transaction.html
When you use a transactional storage engine such as InnoDB (the default in MySQL 5.5 and higher), you must commit the data after a sequence of INSERT, DELETE, and UPDATE statements. We then create a new cursor, by default a MySQLCursor object, using ... Inserting or updating data is also done using the handler structure known as a ...
https://dev.mysql.com/doc/internals/en/implementing-the-info-method.html
These values are also used to populate certain SHOW outputs such as SHOW TABLE STATUS and for queries of the INFORMATION_SCHEMA. The optimizer requests an update of table information by calling the ...
https://dev.mysql.com/doc/workbench/en/wb-creating-eer-diagram.html
To add a table to the canvas, select the Catalog tab in the middle panel on the right side of the application to display any schemas that appear in the MySQL Model tab. Figure 9.30 Adding Tables to the Canvas MySQL Workbench automatically discovers ... To create an EER diagram for the sakila database, first add an EER diagram by double-clicking the Add Diagram icon in the EER Diagrams panel to create and open a new EER Diagram ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-web-personalization-provider.html
MySQL Connector/NET provides a web parts personalization provider that allows you to use a MySQL server to store personalization data. Minimum Requirements An ASP.NET website or web application with a membership provider .NET Framework 3.0 MySQL ...
https://dev.mysql.com/doc/connectors/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/connector-net/en/connector-net-tutorials-web-personalization-provider.html
MySQL Connector/NET provides a web parts personalization provider that allows you to use a MySQL server to store personalization data. Minimum Requirements An ASP.NET website or web application with a membership provider .NET Framework 3.0 MySQL ...
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/authentication-method-mismatch.html
However, this behavior is not yet implemented in the current mysql client library. Assume that client wants to log in as user U and that user account uses authentication method M. Note The missmatch can happen even if client and server used the ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-myisam.html
We will begin by mentioning that myisam is one of what we call the MySQL storage engine directories. Key handling programs on mysql-5.0/myisam: size name comment ---- ---- ------- 4668 mi_rkey.c for random key searches 3646 mi_rnext.c for next-key ...But the files in those directories are mostly analogues of what's in the myisam directory, and the myisam directory is sort of a ...