Search



Search Results
Displaying 1491 to 1500 of 2144 total results
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-borland.html
The Active property starts by automatically issuing a SELECT * FROM ... With all Borland applications where the Borland Database Engine (BDE) is used, follow these steps to improve compatibility: Update to BDE 3.2 or newer. 5.8.2.2.1 Using ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-vision.html
Select the Return matching rows option. ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-functionality-dynamic-cursor.html
You can enable this function within Windows by selecting the Enable Dynamic Cursor check box within the ODBC Data Source Administrator. Support for the dynamic cursor is provided in Connector/ODBC 3.51, but dynamic cursors are not enabled by ...
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-fieldtype.html
This class provides all supported MySQL field or data types. They can be useful when dealing with raw data or defining your own converters. The field type is stored with every cursor in the description for each column. The following example shows ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-query.html
If the query is a SELECT statement, the result contains information about columns. Syntax: cnx.cmd_query(statement) This method sends the given statement to the MySQL server and returns a result. The returned dictionary contains information ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-get-warnings.html
>>> cnx.get_warnings = True >>> cursor.execute('SELECT "a"+1') >>> cursor.fetchall() [(1.0,)] >>> cursor.fetchwarnings() [(u'Warning', 1292, u"Truncated incorrect DOUBLE value: 'a'")] Returns True or False. This property can be assigned a value of ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-raise-on-warnings.html
The following example shows the execution of a query that produces a warning: >>> cnx.raise_on_warnings = True >>> cursor.execute('SELECT "a"+1') >>> cursor.fetchall() .. This property can be assigned a value of True or False to enable or disable ...
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-description.html
Syntax: tuples = cursor.description This read-only property returns a list of tuples describing the columns in a result set. Each tuple in the list contains values as follows: (column_name, type, None, None, None, None, null_ok, column_flags) The ...
Displaying 1491 to 1500 of 2144 total results