Search



Search Results
Displaying 961 to 970 of 1337 total results
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-example.html
The Code First approach enables you to define an entity model in code, create a database from the model, and then add data to the database. MySQL Connector/NET is compatible with multiple versions of Entity Framework Core. For specific ...
https://dev.mysql.com/doc/connector-net/en/connector-net-introduction.html
Key Topics For connection string properties when using the MySqlConnection class, see Section 4.5, “Connector/NET Connection Options Reference”. MySQL Connector/NET enables you to develop .NET applications that require secure, high-performance ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tracing-mysql-custom-listeners.html
To build custom listeners that work with the MySQL Connector/NET Trace Source, it is necessary to understand the key methods used, and the event data formats used. The main method involved in passing trace messages is the TraceSource.TraceEvent ...
https://dev.mysql.com/doc/connector-net/en/connector-net-ref-entityframework.html
MySqlModelCacheKey Represents a key value that uniquely identifies an Entity Framework model that has been loaded into memory. Classes Class Description BackoffAlgorithm Represents the base class for backoff algorithms. BackoffAlgorithmErr1040 ...
https://dev.mysql.com/doc/connector-net/en/connector-net-simple-membership-tutorial.html
<membership defaultProvider="MySqlSimpleMembershipProvider"> <providers> <clear/> <add name="MySqlSimpleMembershipProvider" type="MySql.Web.Security.MySqlSimpleMembershipProvider,MySql.Web, ... This section documents the ability to use a simple ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-data-adapter.html
The application was built using the Microsoft Visual Studio to place and create the user interface controls, but the main code that uses the key classes described previously is shown in the next code example, and is portable. Previously, when using ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-mysqlscript.html
Commands for the mysql Command-Line Client are given here: CREATE DATABASE TestDB; USE TestDB; CREATE TABLE TestTable (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, name VARCHAR(100)); The main method of the MySqlScript class is the Execute method.
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pfx.html
openssl pkcs12 -export -in client-cert.pem -inkey client-key.pem -certfile cacert.pem -out client.pfx When asked for an export password, enter the password “pass”. Instead, Windows includes a certificate store that provides platform-dependent ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-ado.html
The following ADO (ActiveX Data Objects) example creates a table my_ado and demonstrates the use of rs.addNew, rs.delete, and rs.update. rs.Open "SELECT * FROM my_ado" rs!Name = "update" rs!txt = "updated-second-time" rs.Update rs.Close 'rs delete ...
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 ...
Displaying 961 to 970 of 1337 total results