C#動態操作SQL的方法!

來源:互聯網
上載者:User

剛寫到一個程式,需要對SQL裡面添加資料庫和表.在網上找的資料不太全.特整理了一下.詳細資料如下:
 //__________________建立資料庫____________________
            string ConnectionString = "Data Source=localhost;Integrated Security=True;Pooling=False";
          SqlConnection conn = new SqlConnection(ConnectionString);           
          conn.Open();    
            sql = "CREATE DATABASE clsky on primary(name = abc ,filename = 'e:\\clsky.mdf')";
   SqlCommand  cmd = new SqlCommand(sql, conn);
            cmd.ExecuteNonQuery();
            MessageBox.Show("建立資料庫成功!");
            //_________________________________________________

            //________________建立表___________________________

            string ConnectionString1 = "Data Source=localhost;Initial Catalog=clsky;Integrated Security=True;Pooling=False";
            SqlConnection conn1 = new SqlConnection(ConnectionString1);
            conn1.Open();
            sql = "CREATE TABLE clsky"+
    "(Id INTEGER CONSTRAINT PKeyMyId PRIMARY KEY,"+
    "Name CHAR(50), Address CHAR(255), Balance FLOAT)"; 
      SqlCommand    cmd1 = new SqlCommand(sql, conn1);
     cmd1.ExecuteNonQuery();
           MessageBox.Show("建立資料庫成功!");
            //__________________________________________________

            //_______________刪除表_____________
         
           sql = "DROP TABLE clsky";
           SqlCommand cmd2 = new SqlCommand(sql, conn1);
           cmd2.ExecuteNonQuery();
           MessageBox.Show("刪除表成功!");
           conn1.Close();
           conn.Close();
            //_________________________________
你如果還要刪除此資料庫.可以使用:
    string ConnectionString = "Data Source=localhost;Integrated Security=True;Pooling=False";
            SqlConnection conn = new SqlConnection(ConnectionString);
            conn.Open();
            string sql = "DROP DATABASE clsky  ";
            SqlCommand cmd = new SqlCommand(sql, conn);
            cmd.ExecuteNonQuery();

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.