Search



Search Results
Displaying 401 to 410 of 1545 total results
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursorraw.html
A MySQLCursorRaw cursor skips the conversion from MySQL data types to Python types when fetching rows. A raw cursor is usually used to get better performance or when you want to do the conversion yourself. To create a raw cursor, use the raw ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-select.html
The following example shows how to query data using a cursor created using the connection's cursor() method. The task is to select all employees hired in the year 1999 and print their names and hire dates to the console. We then create a new ...
https://dev.mysql.com/doc/connector-net/en/connector-net-faq.html
Questions 10.1: Are all commands executed after a transaction begins automatically enlisted in the transaction? 10.2: How do I obtain the value of an auto-incremented column? Questions and Answers10.1: Are all commands executed after a transaction ...
https://dev.mysql.com/doc/connector-net/en/connector-net-installation-unix.html
There is no installer available for installing the MySQL Connector/NET component on your Unix installation. Before installing, ensure that you have a working Mono project installation. To test whether your system has Mono installed, enter: $> mono ...
https://dev.mysql.com/doc/connector-net/en/connector-net-interceptors.html
An interceptor is a software design pattern that provides a transparent way to extend or modify some aspect of a program, similar to a user exit. With MySQL Connector/NET, the interceptors are enabled and disabled by updating the connection string ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-datetime-fractional.html
MySQL Connector/NET supports the fractional seconds feature in MySQL, where the fractional seconds part of temporal values is preserved in data stored and retrieved through SQL. For fractional second handling in MySQL 5.6.4 and higher, see ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-datetime-invalid.html
Although it is strongly recommended that you avoid the use of invalid dates within your .NET application, it is possible to use invalid dates by means of the MySqlDateTime data type. The MySqlDateTime data type supports the same date values that ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-stored-procedures.html
Putting database-intensive operations into stored procedures lets you define an API for your database application. You can reuse this API across multiple applications and multiple programming languages. This technique avoids duplicating database ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-web-personalization-provider.html
MySQL Connector/NET provides a web parts personalization provider that allows you to use a MySQL server to store personalization data. This tutorial demonstrates how to configure the web parts personalization provider using Connector/NET. Minimum ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-pooling.html
Connection pooling enables the ODBC driver to re-use existing connections to a given database from a pool of connections, instead of opening a new connection each time the database is accessed. By enabling connection pooling you can improve the ...
Displaying 401 to 410 of 1545 total results