博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网络游戏_数据库查询
阅读量:5221 次
发布时间:2019-06-14

本文共 823 字,大约阅读时间需要 2 分钟。

using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MySql.Data.MySqlClient;
namespace MySql数据库操作
{
    class Program
    {
        static void Main(string[] args)
        {
            string connStr = "Database=game;Data Source=127.0.0.1;port=3306;User Id=root;Password=shirln123My;";
            MySqlConnection conn = new MySqlConnection(connStr);
            conn.Open();
            #region 查询
            // MySqlCommand cmd = new MySqlCommand("select * from user where id=1", conn);
            // MySqlDataReader reader = cmd.ExecuteReader();
            //while(reader.Read())
            // {              
            //     string username = reader.GetString("username");
            //     string password = reader.GetString("password");
            //     Console.WriteLine(username+";"+password);
            // }
            // reader.Close();
            #endregion  
            conn.Close();
            Console.ReadKey();
        }
    }
}

转载于:https://www.cnblogs.com/shirln/p/7874447.html

你可能感兴趣的文章