-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnectMySql.cs
More file actions
27 lines (26 loc) · 969 Bytes
/
ConnectMySql.cs
File metadata and controls
27 lines (26 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using MySqlConnector;
namespace test
{
class Program
{
public static void Main(string[] args)
{
string connectionString;
MySqlConnection conn;
connectionString = @"Data Source=localhost;Initial Catalog=test;User ID=myuser;Password=password";
conn = new MySqlConnection(connectionString);
conn.Open();
Console.WriteLine("Connected to Database!");
string query = "select * from student";
MySqlCommand cmd = new MySqlCommand(query, conn);
MySqlDataReader dataReader = cmd.ExecuteReader();
Console.WriteLine(dataReader.GetName(0)+" "+dataReader.GetName(1)+" "+dataReader.GetName(2));
while (dataReader.Read())
{
Console.WriteLine(dataReader.GetValue(0)+" "+ dataReader.GetValue(1)+" "+dataReader.GetValue(2));
}
conn.Close();
}
}
}