Search Results
https://dev.mysql.com/doc/workbench/en/wb-forward-engineering-sql-scripts.html
Generate DROP Statements Before Each CREATE Statement Select this option to generate a statement to drop each object before the statement that creates it. Generate DROP SCHEMA Sort Tables Alphabetically When this option is unchecked, tables are ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-last-insert-id.html
getGeneratedKeys() is the preferred method to use if you need to retrieve AUTO_INCREMENT keys and through JDBC; this is illustrated in the first example below. The second example shows how you can retrieve the same value using a standard SELECT ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-error.html
This exception is the base class for all other exceptions in the errors module. It can be used to catch all errors in a single except statement. errors.Error is internally used by Connector/Python to raise MySQL client and server errors and should ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-vb.html
The following sample creates a table my_vb_net and demonstrates the use in VB.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-error.html
This exception is the base class for all other exceptions in the errors module. It can be used to catch all errors in a single except statement. errors.Error is internally used by Connector/Python to raise MySQL client and server errors and should ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-basic.html
'I'm quite content\n" "to stay here--only I AM so hot and thirsty!'\n" "\n" " -- Lewis Carroll, 'Through the Looking-Glass'."; /* Function to drop table. */ void drop_table(MYSQL &mysql) { if (mysql_query(&mysql, "DROP TABLE api_blob")) ... This ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-scanning-basic.html
This example illustrates how to use the NDB scanning API. It shows how to perform a scan, how to scan for an update, and how to scan for a delete, making use of the NdbScanFilter and NdbScanOperation classes. The source code for this example may ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-simple-dual.html
This example demonstrates synchronous transactions and connecting to multiple clusters in a single NDB API application. The source code for this program may be found in the NDB Cluster source tree, in the file ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndb.html
(See Section 2.3.16, “The NdbEventOperation Class”.) dropEventOperation() Drops a subscription to a database event. Ndb::dropEventOperation() Description This method drops a subscription to a database event represented by an NdbEventOperation ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbdictionary.html
Dropping indexes through the NDB API that were created originally from an NDB Cluster causes inconsistencies. It is possible that a table from which one or more indexes have been dropped using the NDB API will no longer be usable by MySQL following ... This section provides information about the NdbDictionary class, which stores meta-information about NDB database objects, such as tables, columns, and ...