Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-asp-roles.html
This requires that the developer creates database tables to store user information, along with code to gather and process this data. Create a new MySQL database using the MySQL Command-Line Client program (mysql), or other suitable tool. This ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-blob-serverprep.html
For this example, use the following table definition: CREATE TABLE file( file_id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, file_name VARCHAR(64) NOT NULL, file_size MEDIUMINT UNSIGNED NOT NULL, file MEDIUMBLOB NOT NULL); After creating ... The first step is using MySQL with BLOB data is to configure the ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-bulk-loader.html
First an empty table needs to be created, in this case in the test database. CREATE TABLE Career ( Name VARCHAR(100) NOT NULL, Age INTEGER, Profession VARCHAR(200) ); A simple tab-delimited data file is also created (it could use any other field ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html
If CommandType is set to TableDirect, all rows and columns of the named table are returned when you call one of the execute methods. In effect, this command performs a SELECT * on the table specified. The CommandText property is set to the name of ... The MySqlCommand class represents a SQL statement to execute against a MySQL ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-asp-roles.html
This requires that the developer creates database tables to store user information, along with code to gather and process this data. Create a new MySQL database using the MySQL Command-Line Client program (mysql), or other suitable tool. This ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-dao.html
The following DAO (Data Access Objects) example creates a table my_dao and demonstrates the use of rs.addNew, rs.update, and result set scrolling. Set rs = conn.OpenRecordset("my_dao") rs.Edit rs!Name = "updated-string" rs.Update rs.Close 'fetch ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-rdo.html
The following RDO (Remote Data Objects) example creates a table my_rdo and demonstrates the use of rs.addNew and rs.update. SQL = "select * from my_rdo" Set rs = cn.OpenResultset(SQL, rdOpenStatic, rdConcurRowVer, rdExecDirect) Do Until rs.EOF For ...
https://dev.mysql.com/doc/internals/en/full-text-search.html
The value of thinking of it this way is: once you realize that term occurrences are lines in a multi-dimensional space, you can apply basic trigonometry to calculate "distances", and those distances are equatable with similarity measurements. The ...
https://dev.mysql.com/doc/internals/en/load-data-infile-events.html
EXEC_LOAD_EVENT tells the slave to load the temporary file into the table, or DELETE_FILE_EVENT tells the slave not to do the load and to delete the temporary file. LOAD DATA INFILE is not written to the binary log like other statements. It is ...
https://dev.mysql.com/doc/internals/en/optimizer-group-by-related-conditions.html
If the table handler has a quick row-count available, then the query SELECT COUNT(*) FROM Table1; gets the count without going through all the rows. This is true for MyISAM tables, but not for InnoDB tables. Note that the query SELECT COUNT(column1) ... These are the main optimizations that take place for GROUP BY and related items (HAVING, COUNT(), MAX(), MIN(), SUM(), AVG(), ...