Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-statements-callable.html
For more information on MySQL stored procedures, please refer to Using Stored Routines. Although CallableStatement supports calling any of the Statement execute methods (executeUpdate(), executeQuery() or execute()), the most flexible method to call ...Notice that you have to use JDBC escape syntax, and that the parentheses surrounding the parameter placeholders are not optional: Example 3.7 Connector/J: Using Connection.prepareCall() import java.sql.CallableStatement; ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-statements-callable.html
For more information on MySQL stored procedures, please refer to Using Stored Routines. Although CallableStatement supports calling any of the Statement execute methods (executeUpdate(), executeQuery() or execute()), the most flexible method to call ...Notice that you have to use JDBC escape syntax, and that the parentheses surrounding the parameter placeholders are not optional: Example 7.4 Connector/J: Using Connection.prepareCall() import java.sql.CallableStatement; ...
https://dev.mysql.com/doc/refman/8.4/en/sys-diagnostics.html
This procedure disables binary logging during its execution by manipulating the session value of the sql_log_bin system variable. That is a restricted operation, so the procedure requires privileges sufficient to set restricted session variables.
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-cluster-metric-mysqlserver-ddlstatementactivity-category.html
Drop Procedure (Delta) The total number of DROP PROCEDURE statements executed. Alter Procedure (Delta) The total number of ALTER PROCEDURE statements executed. Create Procedure (Delta) The total number of CREATE PROCEDURE statements executed. Drop ... Lists the DDL Statement Activity metrics and provides a brief description of ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-mysqlserver-ddlstatementactivity-category.html
Drop Procedure (Delta) The total number of DROP PROCEDURE statements executed. Alter Procedure (Delta) The total number of ALTER PROCEDURE statements executed. Create Procedure (Delta) The total number of CREATE PROCEDURE statements executed. Drop ... Lists the DDL Statement Activity metrics and provides a brief description of ...
https://dev.mysql.com/doc/ndbapi/en/ndb-error-codes-single.html
Drop foreign key failed in NDB - foreign key not found 21041 MySQL error. Drop foreign key failed in NDB - invalid foreign key version 21042 MySQL error. Drop foreign key failed in NDB - foreign key not found in TC 21060 MySQL error. Drop table not ... This section lists all NDB errors, ordered by NDB error ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-collections-operations.html
mysql-js> db.getCollections() [ <Collection:countryinfo>, <Collection:flags> ] Drop a Collection To drop an existing collection from a schema, use the db object's dropCollection() method. For example, to drop the flags collection from the current ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-indexes-create.html
mysql-js> db.countryinfo.createIndex("name", {"fields": [{"field": "$.Name", "type": "TEXT(40)", "required": true}], "unique": true}) Drop an Index To drop an index, pass the name of the index to drop to the dropIndex() method. For example, you can ... Indexes are used to find documents with specific field values ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-collections-operations.html
mysql-py> db.get_collections() [ <Collection:countryinfo>, <Collection:flags> ] Drop a Collection To drop an existing collection from a schema, use the db object's drop_collection() method. For example, to drop the flags collection from the current ... In MySQL Shell, you can create new collections, get a list of the existing collections in a schema, and remove an existing collection from a ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-documents-index.html
mysql-py> db.countryinfo.create_index("name", {"fields": [{"field": "$.Name", "type": "TEXT(40)", "required": True}], "unique": True}) Drop an Index To drop an index, pass the name of the index to drop to the drop_index() method. For example, you ...