C#對現有sqlite資料庫中、特定表中是否存在某列、

來源:互聯網
上載者:User

標籤:style   blog   io   color   ar   os   for   sp   資料   

 1 System.Data.SQLite.SQLiteConnection conne = new System.Data.SQLite.SQLiteConnection(); 2 System.Data.SQLite.SQLiteConnectionStringBuilder connstr = new System.Data.SQLite.SQLiteConnectionStringBuilder(); 3 connstr.DataSource = System.AppDomain.CurrentDomain.BaseDirectory + "//DB//Course.db"; 4 conne.ConnectionString = connstr.ToString(); 5 conne.Open(); 6  7 System.Data.SQLite.SQLiteCommand cmd = new System.Data.SQLite.SQLiteCommand(); 8  9 string sql = "Select * From UserLoginInfo WHERE UserAccount =‘-------‘";10 cmd.CommandText = sql;11 cmd.Connection = conne;12 13 System.Data.SQLite.SQLiteDataAdapter adapter = new System.Data.SQLite.SQLiteDataAdapter(cmd);14 DataSet data = new DataSet();15 adapter.Fill(data);16 DataTable table = data.Tables[0];17 18 bool HasShowAccount = false;19 for (int i = 0; i < table.Columns.Count; i++)20 {21     if (table.Columns[i].ColumnName.Equals("ShowAccount"))22     {23         HasShowAccount = true;24     }25 }26 27 if (!HasShowAccount)28 {29     sql = "alter table UserLoginInfo add column ShowAccount CHAR(50)";30     cmd.CommandText = sql;31     cmd.ExecuteNonQuery();32 }33 conne.Close();

 

C#對現有sqlite資料庫中、特定表中是否存在某列、

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.