Jump to content

Recommended Posts

Posted

So I'm integrating MySQL with Bridge. Having a bit of trouble.  I created a new .cs file just for the MySQL information, and followed the MySQL Connector guide perfectly (to the best of my knowledge.)

 

here's what I got:

using System;
using MySql.Data.MySqlClient;

namespace Trial
{
    public class MySQL
    {
        public static void Main()
        {
            string connStr = "server=localhost;user=root;database=ragemp;port=3306;password=";
            MySqlConnection conn = new MySqlConnection(connStr);
            try
            {
                Console.WriteLine("Connecting to MySQL...");
                conn.Open();
                // Perform database operations
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
            }
            conn.Close();
            Console.WriteLine("MySQL Connector Initiated.");
        }
    }
}

Looks good to me. I have 3 .cs files. Trial.Main, Trial.Test, and Trial.MySQL (which is above).

772VQOo.png

This is what my console outputs, it's not even reading Trial.MySQL, so obviously I have done something wrong.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...