截至目前,我已經獲得了一段讀取XML文件並以圖形方式呈現這些文件的軟件,爲用戶提供了這些文件描述的事件的一些概覽。如何連接到本地SQL數據庫?
現在的癥結在於,使用該軟件的工程師之一要求將所有加載到程序中的數據保存到數據庫中。
我的鹹菜如下:
public void addToDBO(List<List<EventElement>> insertList)
{
SqlConnection s1 = new SqlConnection();
s1.ConnectionString = filePath;
s1.Open();
SqlCommand command = new SqlCommand();
command.Connection = s1;
foreach (List<EventElement> item in insertList)
---------------------SNIP----------------------------
//Adding-data-to-database logic
我的意思是加載的數據寫入到localy部署了一個數據庫,但問題是,它不接受我的簡單增加數據庫的文件路徑爲hamhanded方法字符串filepath
。因此,總結: 如何正確連接到位於我的C:/?上的數據庫。
預先感謝您。
你會發現代碼見http://www.connectionstrings.com/sql-server/ ...您可以declaire在連接字符串中有 –
「我如何正確地連接到數據庫」:請參閱[ConnectionStrings](http://www.connectionstrings.com/) – Corak
您使用的是哪種數據庫? –