Difference between revisions of "Connect MySQL to ASP.Net Web App"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Getting the data)
Line 51: Line 51:
 
Now, in the constructor method I have added the following code:
 
Now, in the constructor method I have added the following code:
 
<syntaxhighlight lang=c#>
 
<syntaxhighlight lang=c#>
        public IndexModel(ILogger<IndexModel> logger)
+
public IndexModel(ILogger<IndexModel> logger)
        {
+
{
            _logger = logger;
+
    _logger = logger;
  
            using var connection = GetConnection; // this gets the connection
+
    using var connection = GetConnection; // this gets the connection
  
    connection.Open(); // you must open the connection
+
    connection.Open(); // you must open the connection
 
              
 
              
            using var Command = new MySqlCommand("SELECT * FROM test;", connection ); // you can add your SQL into a command
+
    using var Command = new MySqlCommand("SELECT * FROM test;", connection ); // you can add your SQL into a command
            using var reader = Command.ExecuteReader(); // you execute the query
+
    using var reader = Command.ExecuteReader(); // you execute the query
            while (reader.Read())
+
    while (reader.Read())
            {
+
    {
                User temp = new User(); // create user
+
        User temp = new User(); // create user
                temp.username = reader.GetString(0);
+
        temp.username = reader.GetString(0);
temp.password = reader.GetString(1);
+
        temp.password = reader.GetString(1);
temp.status = reader.GetInt32(2);
+
        temp.status = reader.GetInt32(2);
users.Add(temp); // add user to list
+
        users.Add(temp); // add user to list
            }
+
    }
        }
+
}
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 19:41, 8 October 2024

Install MySQL.Data

Using the Nuget Package Manager install the following:

  • MySql.Data;
  • MySql.Data.MySqlClient;

Creating the connection

Now using the page you want to connect, open the Model `cs` code.

At the top add the following

using MySql.Data;
using MySql.Data.MySqlClient;

Just for this example we will be retrieving the details from the user table, so I created this class to store each record:

public class User
{
    public string username { get; set; }
    public string password { get; set; }
    public int status { get; set; }
}

Next I created a list of User to store the retrieved data:

public static List<User> users = new List<User>();


I have also created this string for the connection string:

string connection = "server=localhost;user=root;database=test;port=3306;password=usbw;";

Finally I created this method to get the connection:

        public MySqlConnection GetConnection 
        {
            get
            {
                return new MySqlConnection(connection);
            }
        }

Getting the data

Now, in the constructor method I have added the following code:

public IndexModel(ILogger<IndexModel> logger)
{
    _logger = logger;

    using var connection = GetConnection; // this gets the connection

    connection.Open(); // you must open the connection
            
    using var Command = new MySqlCommand("SELECT * FROM test;", connection ); // you can add your SQL into a command
    using var reader = Command.ExecuteReader(); // you execute the query
    while (reader.Read())
    {
         User temp = new User(); // create user
         temp.username = reader.GetString(0);
         temp.password = reader.GetString(1);
         temp.status = reader.GetInt32(2);
         users.Add(temp); // add user to list
    }
}