Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-connectargs.html
Call the commit() method of the MySQLConnection instance within your application after doing a set of related insert, update, and delete operations. A connection with the MySQL server can be established using either the mysql.connector.connect() ...
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. Inserting or updating data is also done using the handler ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html
Code First Features Following are new Code First features supported by Connector/NET: Code First Mapping to Insert/Update/Delete Stored Procedures supported: modelBuilder.Entity<EntityType>().MapToStoredProcedures(); Idempotent migrations scripts ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html
Class methods enable you to perform the following database operations: Query a database Insert, update, and delete data Return a single value Command-based database operations can run within a transaction, if needed. The MySqlCommand class ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-asp-provider-profile.html
The Profile Provider also enables profile data to be managed effectively, for example it enables profiles that have not been accessed since a specific date to be deleted. This tutorial shows you how to use the MySQL Profile Provider to store user ...
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-examples-overview.html
For Delete / Update / Insert the results might include the number of rows affected. Interacting with a MySQL server from an applications using the Connector/ODBC typically involves the following operations: Configure the Connector/ODBC DSN. This ...
https://dev.mysql.com/doc/connector-python/en/connector-python-coding.html
You use the SQL INSERT, UPDATE, and DELETE statements to update different items concurrently, writing only the changed values to disk. The following guidelines cover aspects of developing MySQL applications that might not be immediately obvious to ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
Call the commit() method of the MySQLConnection instance within your application after doing a set of related insert, update, and delete operations. A connection with the MySQL server can be established using either the mysql.connector.connect() ...
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. Inserting or updating data is also done using the handler ...