Search



Search Results
Displaying 51 to 60 of 234 total results
https://dev.mysql.com/doc/refman/8.4/en/faqs-stored-procs.html
Can I pass a cursor as an IN parameter to a stored procedure? A.4.19. Can I return a cursor as an OUT parameter from a stored procedure? A.4.20. Can I pass a cursor as an IN parameter to a stored procedure? Cursors are only available inside stored ...Where can I find documentation for MySQL stored procedures and stored functions? ...
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/connectors/en/connector-python-api-mysqlconnection-time-zone.html
>>> cnx.time_zone = '+00:00' >>> cursor = cnx.cursor() >>> cursor.execute('SELECT NOW()') ; cursor.fetchone() (datetime.datetime(2012, 6, 15, 11, 24, 36),) >>> cnx.time_zone = '-09:00' >>> cursor.execute('SELECT NOW()') ; cursor.fetchone() ... This ...
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/connector-python/en/connector-python-api-mysqlconnection-time-zone.html
>>> cnx.time_zone = '+00:00' >>> cursor = cnx.cursor() >>> cursor.execute('SELECT NOW()') ; cursor.fetchone() (datetime.datetime(2012, 6, 15, 11, 24, 36),) >>> cnx.time_zone = '-09:00' >>> cursor.execute('SELECT NOW()') ; cursor.fetchone() ... This ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference-api.html
(“Out” and “inout” parameters are not supported for LONGTEXT and LONGBLOB columns.) SQLGetCursorName Yes ISO 92 Returns the cursor name associated with a statement handle. SQLSetPos Yes ODBC Positions a cursor within a fetched block of data ...For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference-errorcodes.html
The following tables lists the error codes returned by Connector/ODBC apart from the server errors.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-column-names.html
Syntax: sequence = cursor.column_names This read-only property returns the column names of a result set as sequence of Unicode strings.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-execute.html
Syntax: cursor.execute(operation, params=None) iterator = cursor.execute(operation, params=None) # Allowed before 9.2.0 iterator = cursor.execute(operation, params=None, multi=True) This method executes the given database operation (query or ...The ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-api.html
(“Out” and “inout” parameters are not supported for LONGTEXT and LONGBLOB columns.) SQLGetCursorName Yes ISO 92 Returns the cursor name associated with a statement handle. SQLSetPos Yes ODBC Positions a cursor within a fetched block of data ...For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
Displaying 51 to 60 of 234 total results