Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-crystal-displaying.html
To display a report we first populate a data set with the data needed for the report, then load the report and bind it to the data set. Finally we pass the report to the crViewer control for display to the user. The following references are needed ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-stored-proc.html
A stored procedure is a set of SQL statements that is stored in the server. Clients make a single call to the stored procedure, passing parameters that can influence the procedure logic and query conditions, rather than issuing individual hardcoded ...
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-verify-package.html
To import the build key into your personal public GPG keyring, use the gpg --import command. After downloading the MySQL package and before attempting to install it, ensure that the package is intact and has not been tampered with. There are two ...
https://dev.mysql.com/doc/connector-j/en/connector-j-logging-slf4j.html
Besides its default logger com.mysql.cj.log.StandardLogger, which logs to stderr, Connector/J supports the SLF4J logging facade, allowing end users of applications using Connector/J to plug in logging frameworks of their own choices at deployment ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-connect-drivermanager.html
import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; Connection conn = null; ... When you are using JDBC outside of an application server, the DriverManager class manages the establishment of connections. Specify ...
https://dev.mysql.com/doc/refman/8.4/en/checking-rpm-signature.html
To import the MySQL public key into the RPM keyring, first obtain the key, then use rpm --import to import the key. For example: $> gpg --export -a a8d3785c > a8d3785c.asc $> rpm --import a8d3785c.asc Alternatively, rpm also supports loading the key ...RPM 4.1 no longer uses your personal GPG keyring (or GPG ...
https://dev.mysql.com/doc/refman/8.4/en/faqs-mysql-cluster.html
How do I import an existing MySQL database into an NDB Cluster? A.10.28. For information about new features and other important changes in this series, see What is New in MySQL NDB Cluster 8.0. It is especially important to keep in mind that every ... In the following section, we answer questions that are frequently asked about MySQL NDB Cluster and the NDB storage ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-init-startup-configuration.html
This section provides information about specifying InnoDB settings in a configuration file, viewing InnoDB initialization information, and important storage considerations. Important Storage Considerations Review the following storage-related ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-example-data.html
One of these is to modify the table definition before importing it into the Cluster database. Then modify the table definitions as just described and import the file into the SQL node of the cluster like this: $> mysql world < /tmp/world.sql If you ... Note The information in this section applies to NDB Cluster running on both Unix and Windows ...
https://dev.mysql.com/doc/refman/8.4/en/replication-setup-replicas.html
The next steps depend on whether you have existing data to import to the replica or not. Choose one of the following: If you do not have a snapshot of a database to import, see Section 19.1.2.6.1, “Setting Up Replication with New Source and ...