連線oracle的時候,需要在 nuget 中安裝 oracle.manageddataaccess.dll
///
/// 讀取oracle的資料-id
///
/// 配置資訊
///@"data source=(description =(address = (protocol = tcp)(host = ip位址)(port = 埠號))(connect_data =(server = dedicated)(service_name = orcl)));user id=使用者名稱;password=密碼!";
/// /// sql語句 @"select * from formtable_main_46_dt1 where mainid = '2222'"
/// 返回資料
///
public
static list<
string
>
oraclereaddata_id
(string config,
string sql)
odr.
close()
;}catch
(exception ex)
finally
return data;
}
///
/// 修改
///
/// 配置資訊 @"data source=(description =(address = (protocol = tcp)(host = ip位址)(port = 埠號))(connect_data =(server = dedicated)(service_name = orcl)));user id=使用者名稱;password=密碼!"
/// sql語句 如 @"update formtable_main_46_dt1 set gys ='1' where mainid='2020'"
static
void
oraclesync
(string config,
string sql)
else
}catch
(exception ex)
finally
}
Oracle資料庫修改主鍵
一 資料表有主鍵但無主鍵約束名 先刪除之前的主鍵,後新增主鍵 a.alter table 表名 drop primary key b.alter table 表名 add primary key 想要更改的欄位名稱 二 資料表有主鍵也有主鍵約束名 1 刪除已有的主鍵約束名 a.若已知主鍵約束名 al...
C 應用程式中讀取Oracle資料庫
最近的任務就是開發了乙個功能,要從 商那邊讀取資料,然後拿過來,處理以後放到我們自己的資料庫中。商那邊是oracle資料庫,其實不管什麼資料我想都差不多,於是我就開始了。由於在家裡寫的部落格,那些截圖都放在公司電腦了,希望能通過文字讓大家明白,多有不周還請原諒。第一種方法 一開始我是用的.net裡面...
oracle 資料庫修改列型別
新增備份字段 alter table acc accitem add back type char 1 備份字段 update acc accitem t set t.al type null t.back type decode al type,1 a 2 l 3 e 4 i 5 p 6 o 7 ...