Search



Search Results
Displaying 151 to 160 of 275 total results
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
mysql.connector.errors.DataError: 1292: Truncated incorrect DOUBLE value: 'a' Returns True or False. This property can be assigned a value of True or False to enable or disable whether warnings should raise exceptions. The property can be invoked ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-fetchwarnings.html
The following example shows a SELECT statement that generates a warning: >>> cnx.get_warnings = True >>> cursor.execute("SELECT 'a'+1") >>> cursor.fetchall() [(1.0,)] >>> cursor.fetchwarnings() [(u'Warning', 1292, u"Truncated incorrect DOUBLE value: ...Syntax: tuples = cursor.fetchwarnings() This method returns a list of tuples containing warnings generated by the previously executed ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-warnings.html
The following example shows a SELECT statement that generates a warning: >>> cnx.get_warnings = True >>> cursor.execute("SELECT 'a'+1") >>> cursor.fetchall() [(1.0,)] >>> print(cursor.warnings) [(u'Warning', 1292, u"Truncated incorrect DOUBLE value: ... Syntax: tuples = cursor.warnings This property returns a list of tuples containing warnings generated by the previously executed ...
https://dev.mysql.com/doc/connectors/en/connector-python-multi.html
There are also limitations when working with custom delimiters: Unsupported delimiters: the following characters are not supported by the connector in DELIMITER statements: double quote: " single quote: ' hash: # slash plus star: /* star plus slash: ... Connector/Python can execute either a single or multiple statements, this section references multiple statement and associated delimiter ...
https://dev.mysql.com/doc/connector-net/en/connector-net-installation-binary-windows-installer.html
To install Connector/NET: Double-click the MSI installer file, and click Next to start the installation. You can install MySQL Connector/NET through a Windows Installer (.msi) installation package, which can install Connector/NET on supported ...
https://dev.mysql.com/doc/connector-net/en/connector-net-installation-source.html
Double-click the solutions file to start Visual Studio and open the solution. Building MySQL Connector/NET from the source code enables you to customize build parameters and target platforms such as Linux and macOS. The procedures in this section ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-access.html
To improve the integration between Microsoft Access and MySQL through Connector/ODBC: For all versions of Access, enable the Connector/ODBC Return matching rows option. Include a TIMESTAMP column in all tables that you want to be able to update.
https://dev.mysql.com/doc/connector-python/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/connector-python/en/connector-python-api-mysqlconnection-raise-on-warnings.html
mysql.connector.errors.DataError: 1292: Truncated incorrect DOUBLE value: 'a' Returns True or False. This property can be assigned a value of True or False to enable or disable whether warnings should raise exceptions. The property can be invoked ...
Displaying 151 to 160 of 275 total results