Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-support-bug-report.html
In the tearDown() method, drop any tables you created in the setUp() method. The normal place to report bugs is http://bugs.mysql.com/, which is the address for our bugs database. This database is public, and can be browsed and searched by anyone.
https://dev.mysql.com/doc/connectors/en/connector-net-programming-crystal-source.html
You will be able to browse your database and choose tables and fields using drag and drop to build your report. When creating a report in Crystal Reports there are two options for accessing the MySQL data while designing your report. The first ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-entity-framework-winform-data-source.html
In the Data Sources panel select the Data Source you just created and drag and drop it onto the Form Designer. This tutorial describes how to create a Windows Forms Data Source from an Entity in an Entity Data Model using Microsoft Visual Studio.
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-tools-with-crystalreports.html
Drag and drop or use the > buttons to add fields to each area of the report. Crystal Reports can use an ODBC DSN to connect to a database from which you to extract data and information for reporting purposes. Note There is a known issue with ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-coldfusion.html
Before the MySQL driver appears in the ODBC data sources drop-down list, build and copy the Connector/ODBC driver to /opt/coldfusion/lib/libmyodbc.so. The following information is taken from the ColdFusion documentation: Use the following ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-crystal-source.html
You will be able to browse your database and choose tables and fields using drag and drop to build your report. When creating a report in Crystal Reports there are two options for accessing the MySQL data while designing your report. The first ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-entity-framework-winform-data-source.html
In the Data Sources panel select the Data Source you just created and drag and drop it onto the Form Designer. This tutorial describes how to create a Windows Forms Data Source from an Entity in an Entity Data Model using Microsoft Visual Studio.
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-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 ...