Search Results
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming-net.html
5.6.7.2.1 Using Connector/ODBC with ODBC.NET and C# (C sharp) The following sample creates a table my_odbc_net and demonstrates its use in C#. This section contains simple examples that demonstrate the use of Connector/ODBC drivers with ODBC.NET.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor.html
To create a cursor, use the cursor() method of a connection object: import mysql.connector cnx = mysql.connector.connect(database='world') cursor = cnx.cursor() Several related classes inherit from MySQLCursor. To create a cursor of one of these ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-pooling.html
See Section 4.1, “Creating a Connector/NET Connection String” for further information. Subsequently, if a new MySqlConnection object is opened, it is created from the connection pool, rather than creating a new native connection. Do not create a ... The MySQL Connector/NET supports connection pooling for better performance and scalability with database-intensive ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-document-store.html
A non-root account can be used as long as the account has privileges to create new databases. Execute the world_x.sql script to create the database structure and insert the data as follows: mysql> SOURCE /temp/world_x.sql; Replace /temp/ with the ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-entity-framework-databinding-linq-entities.html
In this tutorial you create an ASP.NET web page that binds LINQ queries to entities using the Entity Framework mapping with MySQL Connector/NET. Creating an ASP.NET Website In this part of the tutorial, you create an ASP.NET website. The next step ...If you have not already done so, install the world database sample prior to attempting this ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-sql-command.html
After it has been created, there are three main methods of interest that you can call: ExecuteReader to query the database. Results are usually returned in a MySqlDataReader object, created by ExecuteReader. After the MySqlCommand object is created, ... When a connection has been established with the MySQL database, the next step enables you to perform database ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor.html
To create a cursor, use the cursor() method of a connection object: import mysql.connector cnx = mysql.connector.connect(database='world') cursor = cnx.cursor() Several related classes inherit from MySQLCursor. To create a cursor of one of these ...
https://dev.mysql.com/doc/internals/en/the-myi-file.html
In MySQL terminology, a "key" is something that you create with CREATE [UNIQUE] INDEX. Program files which read and write .MYI headers are in the ./myisam directory: mi_open.c has the routines that write each section of the header, mi_create.c has a ... A .MYI file for a MyISAM table contains the table's ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbdictionary.html
While the preferred method of database object creation and deletion is through the MySQL Server, NdbDictionary also permits the developer to perform these tasks through the NDB API. These include the following inner classes: Table for working with ... This section provides information about the NdbDictionary class, which stores meta-information about NDB database objects, such as tables, columns, and ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-requirements.html
The software requirements for running the examples found in the next few sections are as follows: A working Node.js installation Working installations of the ndb and mysql-js adapters The mysql-js adapter also requires a working installation of the ...