主頁(yè) > 知識(shí)庫(kù) > ADO.Net對(duì)oracle數(shù)據(jù)庫(kù)操作的實(shí)例代碼

ADO.Net對(duì)oracle數(shù)據(jù)庫(kù)操作的實(shí)例代碼

熱門(mén)標(biāo)簽:長(zhǎng)春呼叫中心外呼系統(tǒng)哪家好 戶外地圖標(biāo)注軟件手機(jī)哪個(gè)好用 電銷(xiāo)語(yǔ)音自動(dòng)機(jī)器人 五常地圖標(biāo)注 智能電話營(yíng)銷(xiāo)外呼系統(tǒng) 地圖標(biāo)注和認(rèn)領(lǐng) 萊蕪?fù)夂綦婁N(xiāo)機(jī)器人價(jià)格 鄭州400電話辦理 聯(lián)通 凱立德導(dǎo)航官網(wǎng)地圖標(biāo)注

首先要寫(xiě)連接字符串

可以在web.config里寫(xiě)上

復(fù)制代碼 代碼如下:

connectionStrings>
    add name="oracleson" connectionString="Data Source=dingsenorcl;Persist Security Info=True;User ID=ds;Password=ds;Unicode=True" providerName="System.Data.OracleClient"/>
  /connectionStrings>

connectionStrings>
    add name="oracleson" connectionString="Data Source=dingsenorcl;Persist Security Info=True;User ID=ds;Password=ds;Unicode=True" providerName="System.Data.OracleClient"/>
  /connectionStrings>


然后再后臺(tái)調(diào)用
復(fù)制代碼 代碼如下:

string orclcon = ConfigurationManager.ConnectionStrings["oracleson"].ConnectionString;

  string orclcon = ConfigurationManager.ConnectionStrings["oracleson"].ConnectionString;


然后要新建一個(gè)數(shù)據(jù)庫(kù)連接對(duì)象

復(fù)制代碼 代碼如下:

OracleConnection conn = new OracleConnection(orclcon)

OracleConnection conn = new OracleConnection(orclcon)


創(chuàng)建一個(gè)OracleCommand對(duì)象來(lái)對(duì)數(shù)據(jù)庫(kù)進(jìn)行操作
復(fù)制代碼 代碼如下:

OracleCommand cmd = conn.CreateCommand()

OracleCommand cmd = conn.CreateCommand()打開(kāi)連接


conn.Open();操作就行了

復(fù)制代碼 代碼如下:

cmd.CommandText = "insert into T_12(AAAA)values(:a)";
                    cmd.Parameters.AddWithValue(":a", TextBox1.Text);  //參數(shù)替換oracle數(shù)據(jù)庫(kù)要用: sqlserver數(shù)據(jù)庫(kù)是@
                    cmd.ExecuteNonQuery();

cmd.CommandText = "insert into T_12(AAAA)values(:a)";
                    cmd.Parameters.AddWithValue(":a", TextBox1.Text);  //參數(shù)替換oracle數(shù)據(jù)庫(kù)要用: sqlserver數(shù)據(jù)庫(kù)是@
                    cmd.ExecuteNonQuery();

您可能感興趣的文章:
  • C#利用ODP.net連接Oracle數(shù)據(jù)庫(kù)的操作方法
  • .Net連接Oracle數(shù)據(jù)庫(kù)的實(shí)現(xiàn)代碼
  • .net實(shí)現(xiàn)oracle數(shù)據(jù)庫(kù)中獲取新插入數(shù)據(jù)的id的方法
  • .net連接oracle的3種實(shí)現(xiàn)方法
  • asp.net中調(diào)用oracle存儲(chǔ)過(guò)程的方法
  • Ibatis.net結(jié)合oracle批量刪除實(shí)現(xiàn)代碼
  • asp.net中oracle 存儲(chǔ)過(guò)程(圖文)
  • 在.NetCore(C#)中使用ODP.NET Core+Dapper操作Oracle數(shù)據(jù)庫(kù)

標(biāo)簽:岳陽(yáng) 衢州 西藏 西寧 福州 紅河 湖州 宣城

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ADO.Net對(duì)oracle數(shù)據(jù)庫(kù)操作的實(shí)例代碼》,本文關(guān)鍵詞  ADO.Net,對(duì),oracle,數(shù)據(jù)庫(kù),操作,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ADO.Net對(duì)oracle數(shù)據(jù)庫(kù)操作的實(shí)例代碼》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于ADO.Net對(duì)oracle數(shù)據(jù)庫(kù)操作的實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章