zoukankan      html  css  js  c++  java
  • 网络游戏_数据库查询

    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();
            }
        }
    }

  • 相关阅读:
    Shell基本语法
    CURL简单使用
    <C> 字符串简单习题
    <C> 字符串相关的函数
    <C> 内存分区
    <C> 最大值以及最大值下标 二分查找(折半查找)
    <C> 函数 函数指针
    <C> 冒泡排序及其非常非常非常简单的优化
    <C> typedef 宏 const 位运算
    <C> 数组
  • 原文地址:https://www.cnblogs.com/shirln/p/7874447.html
Copyright © 2011-2022 走看看