Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-ref-efcore.html
Enumerations Enumeration Description MySQLMatchSearchMode Performs a search against a text collection. MySql.EntityFrameworkCore.Infrastructure Namespace Classes Class Description MySQLDbContextOptionsBuilder Represents the ... Namespaces in this ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-parameters.html
For example, imagine the following query was constructed from user input: string sql = "SELECT Name, HeadOfState FROM Country WHERE Continent = "+user_continent; If the string user_continent came from a Text Box control, there would potentially be ... This part of the tutorial shows you how to use parameters in your MySQL Connector/NET ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-connection-parameters.html
ENABLE_CLEARTEXT_PLUGIN Enable Cleartext Authentication 0 Set to 1 to enable cleartext authentication. However, the numerical option value in the connection string can only enable, but not disable parameters enabled on the DSN, which can only be ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-windows-5-2.html
In the Description box, enter some text to help identify the connection. The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions such as tracing (used for debugging) and connection ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming-vb.html
This section contains simple examples of the use of Connector/ODBC with ADO, DAO and RDO. 5.6.7.1.1 ADO: rs.addNew, rs.delete, and rs.update The following ADO (ActiveX Data Objects) example creates a table my_ado and demonstrates the use of ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference-api.html
(“Out” and “inout” parameters are not supported for LONGTEXT and LONGBLOB columns.) SQLGetCursorName Yes ISO 92 Returns the cursor name associated with a statement handle. SQLExecDirect Yes ISO 92 Executes a statement SQLNativeSql Yes ODBC ...For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference-datatypes.html
The following table illustrates how Connector/ODBC maps the server data types to default SQL and C data types.
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
If you want to have MEMO columns instead, change BLOB columns to TEXT with ALTER TABLE. The majority of Microsoft applications have been tested with Connector/ODBC, including Microsoft Office, Microsoft Access and the various programming languages ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-example.html
It consists of two entities related to a book library that are configured in the LibraryContext class (or database context). The Code First approach enables you to define an entity model in code, create a database from the model, and then add data ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core.html
In the class that derives from the DbContext class, override the OnConfiguring method to set the MySQL data provider with UseMySQL. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { #warning To protect potentially ...