當前位置:首頁 » 網路資訊 » 怎樣打開資料庫

怎樣打開資料庫

發布時間: 2022-01-23 12:56:22

⑴ 如何打開Mysql資料庫

1、安裝phpstudy伺服器,可以到官網下載這個伺服器,會有詳細的安裝步驟,安裝成功後,界面會下圖的圖標,如下圖

⑵ 如何打開sql資料庫文件

如果是Microsoft SQL的非備份文件的話(兩個文件,分別為資料庫文件和日誌文件,兩個都要有),採用附加資料庫的方式,如果是備份文件(BAK)的話則採用恢復的方式,你在SQL Server Management studio(SQL管理器)里可以找到,向導方式操作成功,但如果該資料庫有加密的話,還要知道密碼。不管是附加還是恢復方式都要先確認該資料庫文件生成資料庫所用的版本才行,但高版本的資料庫文件,不能用低版本的SQL打開,反之低版本的資料庫文件卻可以用高版本的SQL打開,呵呵。

⑶ 怎麼可以把資料庫打開

方法/步驟
1、找到要打開的資料庫文件,如圖

2、如圖所示,該資料庫文件後綴名為.mdf,是SQL Server資料庫的數據文件,這里將用SQL Server資料庫對該文件進行打開。啟動SQL Server資料庫,如圖

3、圖為啟動SQL Server Management Studio時的界面,登錄後可以管理資料庫數據。開啟之後的界面如圖

4、提示用戶輸入用戶名和登錄密碼,輸入正確後,點擊登錄,進入管理界面,如圖

5、進入管理界面後,右鍵選擇資料庫,再選擇【附加】功能,如圖

6、點擊【附加】後,出現窗口,如圖

7、在【附加資料庫】窗口中,點擊【添加】按鈕,提示選擇要附加的資料庫,如圖

8、選種要添加的資料庫,點擊確定,在管理界面中會出現添加的資料庫,如圖

9、打開資料庫,就可以看到資料庫中的表,表中的數據都可以看到。如圖

注意事項
按以上步驟來,就可以打開資料庫文件。
不要直接點右鍵進行打開,可能會對文件告成損壞。

⑷ sql資料庫如何打開

1、首先你要安裝sql資料庫
2、打開企業管理器
3、右鍵點擊資料庫--所有任務--附加資料庫--選中你想加入的資料庫的mdf文件,ldf文件會自動加入,然後卻定,這樣你就可以用你的資料庫了。

⑸ 怎樣啟動資料庫服務

以SQLSever為例:

一:計算機管理開啟服務

1、在計算機管理框里找到Sql sever配置管理器找到Sql Sever服務打開服務

⑹ 怎樣開啟SQL資料庫服務

啟動SQL SERVER服務的步驟如下:

1.打開電腦,點擊開始,找到Sql Server安裝後生成的文件夾,也可以通過搜索Sql Server 找到。

⑺ 如何用命令打開資料庫

C#資料庫查詢和操作大全

這里將介紹C#資料庫查詢和操作方面的有關知識,包括資料庫連接、資料庫查詢的相關代碼和示例。希望本文對大家有所幫助。
一:C#資料庫查詢之資料庫連接代碼:

SqlConnectionobjSqlConnection=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); objSqlConnection.Open(); 二:資料庫的添加記錄代碼:

inti=0; strings1="",s2=""; i=Convert.ToInt16(textBox1.Text); s1=textBox2.Text; s2=textBox3.Text; SqlConnectionobjSqlConnection=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); objSqlConnection.Open(); MessageBox.Show("資料庫連接成功","好"); try { SqlCommandsqlcom=newSqlCommand("insertintoinfo(id,name,sex)values("+i+",'"+s1+"','"+s2+"')",objSqlConnection); sqlcom.ExecuteNonQuery(); MessageBox.Show("添加成功!","啊"); } catch(Exceptiona) { MessageBox.Show(a.ToString()); } MessageBox.Show("添加成功!","啊"); } 三:資料庫的修改代碼:

inti=0; strings1="",s2=""; s1=textBox2.Text; s2=textBox3.Text; if(textBox1.Text.Length==0) i=0; else i=Convert.ToInt32(textBox1.Text); SqlConnectionobjSqlConnection=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); objSqlConnection.Open(); MessageBox.Show("資料庫連接成功","好"); try { SqlCommandsqlcom=newSqlCommand("updateinfosetname='"+s1+"',sex='"+s2+"'"+"whereid="+i,objSqlConnection); sqlcom.ExecuteNonQuery(); MessageBox.Show("修改成功!","啊"); objSqlConnection.Close(); } catch(Exceptiona) { MessageBox.Show(a.ToString()); } 四:資料庫的刪除代碼:

inti=0; strings1="",s2=""; s1=textBox2.Text; s2=textBox3.Text; if(textBox1.Text.Length==0) i=0; else i=Convert.ToInt16(textBox1.Text); SqlConnectionobjSqlConnection=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); objSqlConnection.Open(); MessageBox.Show("資料庫連接成功","好"); try { SqlCommandsqlcom=newSqlCommand("deletefrominfowhereid="+i,objSqlConnection); sqlcom.ExecuteNonQuery(); MessageBox.Show("刪除成功!","啊"); objSqlConnection.Close(); } catch(Exceptiona) { MessageBox.Show(a.ToString()); } 五:資料庫的查詢代碼:

1.類開始:

DataTabledt1=newDataTable(); SqlDataAdapterda1=newSqlDataAdapter(); 2.按鈕代碼:

inti=0,n=0; strings1="",s2=""; s1=textBox2.Text; s2=textBox3.Text; if(textBox1.Text.Length==0) i=0; else i=Convert.ToInt32(textBox1.Text); SqlConnectionobjSqlConnection=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); objSqlConnection.Open(); MessageBox.Show("資料庫連接成功","好"); stringquery="SELECT*frominfowhereid="+i; DataSetobjDataSet=newDataSet(); SqlDataAdapterobj=newSqlDataAdapter(); obj.SelectCommand=newSqlCommand(query,objSqlConnection); obj.Fill(objDataSet,"info"); SqlCommandobjSqlCommand=newSqlCommand(query,objSqlConnection); SqlDataReaderobjSqlReader=objSqlCommand.ExecuteReader(); while(objSqlReader.Read()) { n+=1; MessageBox.Show("編號:"+objSqlReader.Getvalue(0)+"姓名:"+objSqlReader.Getvalue(1)+"性別"+objSqlReader.Getvalue(2)); } if(n==0) MessageBox.Show("資料庫中沒有這樣的記錄!"); 六:C#資料庫查詢代碼:

inti=0; //intn=0; strings1="",s2=""; stringsql; s1=textBox2.Text; s2=textBox3.Text; if(textBox1.Text.Length==0) { i=0; } else i=Convert.ToInt32(textBox1.Text); SqlConnectionobjSqlConnection=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); objSqlConnection.Open(); MessageBox.Show("資料庫連接成功","好"); stringquery="SELECT*frominfowhereid="+i; if(i==0) sql="select*frominfo"; else sql="select*frominfowhereid="+i; da1=newSqlDataAdapter(sql,objSqlConnection); dt1.Clear(); da1.Fill(dt1); dataGridView1.DataSource=dt1; C#資料庫查詢之資料庫的封裝類代碼:

classDBClass { publicvoiddbclass(stringsql) { try { SqlConnectionsqlcon=newSqlConnection("server=127.0.0.1;uid=sa;pwd=;database=test"); sqlcon.Open(); SqlTransactionobjt=sqlcon.BeginTransaction();//事物開始 SqlCommandsqlcom=newSqlCommand(sql,sqlcon); sqlcom.Transaction=objt;//將Command對象設置為事物處理的對象 sqlcom.ExecuteNonQuery(); objt.Commit();//提交事物 sqlcon.Close(); } catch(Exceptiona) { MessageBox.Show(a.ToString()); } } } --db2資料庫連接代碼: stringstrcon="Provider=IBMDADB2;DataSource=hfzd;UserId=db2admin;Password=db2admin"; //stringsql="select*fromADMINISTRATOR.HFZD"; stringsql="deletefromADMINISTRATOR.HFZDwhereID=1"; OleDbConnectionolecon=newOleDbConnection(strcon); olecon.Open(); MessageBox.Show("資料庫已連接上"); dt.Clear(); da=newOleDbDataAdapter(sql,olecon); da.Fill(dt); dataGridView1.DataSource=dt; olecon.Close();

⑻ 怎樣啟動資料庫服務

方法步驟如下:

  1. 依次找到並打開電腦里的「計算機」「管理」,左側列表選擇「服務」和「應用程序」。

  2. 「服務」如果是oracle資料庫,搜索OracleService文件,啟動即可。

  3. Sqlsever資料庫的話,搜索SQL Server啟動。

⑼ 資料庫文件怎麼打開

看你是什麼資料庫,如果是access,需要本地按裝office軟體中的access軟體才能打開,是 sql server則要按裝sql server2000資料庫,導入後才能打開!

⑽ 怎樣打開MySql資料庫

是mysql的安裝界面。你還沒有安裝完成,就不可以進入,不知道你想問什麼