About 431,000 results
Open links in new tab
  1. 4.1 Creating a Connector/NET Connection String - MySQL

    The MySqlConnection object is configured using a connection string. A connection string contains several key-value pairs, separated by semicolons. In each key-value pair, the option name and its corresponding value are joined by an equal sign.

  2. MySQL connection strings - ConnectionStrings.com

    Connection strings for MySQL. Connect using MySqlConnection, MySQLDriverCS, SevenObjects MySqlClient, Devarts MySqlConnection, MySQLProv.

  3. Connection string for MySQL in C# - Stack Overflow

    Sep 7, 2022 · The below connection string might be helpful for your problem. "server=localhost:3320;uid=root;pwd=Mypwd;database=cc;persistsecurityinfo=true;convertzerodatetime=true"

  4. 6.2.5 Connecting to the Server Using URI-Like Strings or Key ... - MySQL

    Aug 2, 2022 · This section describes use of URI-like connection strings or key-value pairs to specify how to establish connections to the MySQL server, for clients such as MySQL Shell.

  5. What is the MySQL JDBC driver connection string?

    Jan 12, 2012 · Here's the documentation: https://dev.mysql.com/doc/connector-j/en/connector-j-reference-configuration-properties.html A basic connection string looks like: jdbc:mysql://localhost:3306/dbname The class.forName string is "com.mysql.jdbc.Driver", which you can find (edit: now on the same page).

  6. MySQL Connector/Net connection strings

    Use this to connect to a server in a replicated server configuration without concern on which server to use. Server = serverAddress1, serverAddress2, serverAddress3; Database = …

  7. MySQL Connector/ODBC 5.1 connection strings

    Specifying socket This one specifies the Unix socket file or Windows named pipe to connect to. Used only for local client connections. Driver = {MySQL ODBC 5.1 Driver}; Server = …

  8. MySQL Connection Strings - Bluehost

    MySQL connection strings contain parameters such as server name, database name, username and password for authentication, and other optional settings. You can use the provided configuration settings and connection string examples to establish a …

  9. Creating a JDBC Database Connection String - MySQL Compare

    5 days ago · Building a MySQL JDBC Connection String MySQL is widely used for web and application development, and connecting it with Java applications through JDBC is seamless with the right connection string. Here’s how to construct one: Start with the prefix: The JDBC connection string begins with the jdbc: prefix, followed by the database type.

  10. MySQL Connection String Options for .NET/C# - MySqlConnector

    MySQL .NET Connection String Options The simplest MySQL connection string for C# is: new MySqlConnection("Server=YOURSERVER;User …

Refresh