Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-web-personalization-provider.html
Now define an HTML table with three columns and one row. 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 ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-csharp.html
The following sample creates a table my_odbc_net and demonstrates its use in C#. { for (int i=0; i < MyOdbcException.Errors.Count; i++) { Console.Write("ERROR #" + i + "\n" + "Message: " + MyOdbcException.Errors[i].Message + "\n" + "Native: " + ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-vb.html
The following sample creates a table my_vb_net and demonstrates the use in VB.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-refreshoption.html
RefreshOption.REPLICA On a replica replication server, reset the source server information and restart the replica, like RESET SLAVE.
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-transaction.html
Note The following example uses tables created in the example Section 5.2, “Creating Tables Using Connector/Python”. The AUTO_INCREMENT column option for the primary key of the employees table is important to ensure reliable, easily searchable ... Inserting or updating data is also done using the handler structure known as a ...
https://dev.mysql.com/doc/internals/en/implementing-rnd-init-method.html
The method called before any table scan is the [custom-engine.html#custom-engine-api-reference-rnd_init rnd_init()] method. The rnd_init() method is used to prepare for a table scan, resetting counters and pointers to the start of the table. The ...
https://dev.mysql.com/doc/internals/en/innodb-field-contents.html
I made a table with this definition: CREATE TABLE T (FIELD1 VARCHAR(3), FIELD2 VARCHAR(3), FIELD3 VARCHAR(3)) Type=InnoDB; To understand what follows, you must know that table T has six columns — not three — because InnoDB automatically added ...
https://dev.mysql.com/doc/internals/en/miscellaneous-options.html
For Autotools MySQL build options that have CMake equivalents, the normal mapping from an Autotools option to the CMake option is to convert uppercase, remove leading dashes, replace dashes with underscores, and add a leading -D.
https://dev.mysql.com/doc/internals/en/myisam-concurrent-insert.html
This, in turn, is called from ha_myisam::external_lock() from unlock_external() from mysql_unlock_tables(). So it was possible that another thread (or even multiple of them) could thr_lock the table and work with it before the first thread updates ...To support concurrent inserts, every statement starts with copying MYISAM_SHARE::state.state to MI_INFO::save_state and lets MI_INFO::state point to the ...
https://dev.mysql.com/doc/internals/en/myisam-introduction.html
MySQL creates files named Table1.MYD ("MySQL Data"), Table1.MYI ("MySQL Index"), and Table1.frm ("Format"). (Reminder: This does not refer to BDB and InnoDB tables, which do use pages). So the file Table1.MYD looks like this: Hexadecimal Display of ...These files will be in the directory: /<datadir>/<database>/ For example, if you use Linux, you might find the files in the /usr/local/var/test directory (assuming your database name is ...