zoukankan      html  css  js  c++  java
  • C# 连mysql

     static void Main(string[] args)
            {
                string sqlstr = "select * from manavatar";
                MySQLConnection DBConn = new MySQLConnection(new MySQLConnectionString("192.168.0.13", "flashdata", "root", "root", 3306).AsString);
                DBConn.Open();
                //MySQLDataAdapter myadap = new MySQLDataAdapter(sqlstr, conn);
                MySQLCommand DBComm = new MySQLCommand(sqlstr,DBConn);
                MySQLDataReader DBReader = DBComm.ExecuteReaderEx(); //DBComm.ExecuteReaderEx();
                MySQLDataAdapter DTAdapter = new MySQLDataAdapter(sqlstr,DBConn);
               
                DataSet myDataSet = new DataSet();
                DTAdapter.Fill(myDataSet,"manavatar");
             
            
                try
                {
                    while (DBReader.Read())
                    {
                        //Console.WriteLine("11");
                        Console.WriteLine("DBReader:{0},\t\t\tddddd:{1},\t\t {2}",DBReader.GetString(0), DBReader.GetString(1),DBReader.GetString(3));
                    }
                    Console.WriteLine("0000");
                }
                catch (Exception e)
                {
                    Console.WriteLine("读入失败!"+e.ToString());
                }
                finally
                {
                    Console.WriteLine("DBReader关闭");
                    Console.WriteLine("DBConn关闭");
                    DBReader.Close();
                    //DBConn.Close();
                }
               
                for (int i = 0; i < myDataSet.Tables["manavatar"].Rows.Count; i++)
                {
                    Console.WriteLine("{0}",myDataSet.Tables["manavatar"].Rows[2]["user"]);
                }          
               
            }

  • 相关阅读:
    java springboot连接两个数据源
    Android状态栏高度、虚拟操作栏高度
    Java代码实现两种数据库的数据迁移
    微信小程序生成海报
    【比较耗性能的一个东西】Firefox的LayoutReflow
    JS中关于带操作赋值的一个小问题
    js控制样式一个细节
    javascript中打开客户端,关于void的一个疑问
    项目管理日志05-01-05
    项目管理日志05-01-04
  • 原文地址:https://www.cnblogs.com/xkis/p/3072992.html
Copyright © 2011-2022 走看看