XML資料匯入資料庫

2021-05-02 09:23:58 字數 1291 閱讀 2040

一:將批量 xml 資料匯入資料庫

conn = new sqlceconnection (commonuse .dbconnectstring );

sqlcedataadapter da = new sqlcedataadapter ();

sqlcecommand command = new sqlcecommand (insertintolivestockinfo , conn );

da .insertcommand = command ;

command .parameters .add ("@i_cardid" , sqldbtype .nvarchar , 40, "cardid" );

conn .open ();

dataset ds = new dataset ();

dataset xmlds = new dataset ();

xmlds .readxml (xmlfilepath , xmlreadmode .inferschema );

ds = xmlds .copy ();

da .update (ds , "livestocklist" );

二:conn = new sqlceconnection (commonuse .dbconnectstring );

sqlcecommand cmd = new sqlcecommand (querylivestockinfo , conn );

conn .open ();

sqlcedataadapter da = new sqlcedataadapter ();

da .selectcommand = cmd ;

dataset ds = new dataset ();

ds .readxml (xmlfilepath , xmlreadmode .readschema );

foreach (datarow dr in ds .tables [0].rows )

da .update (ds , "t_livestockinfo" );

三:dataset xmlds = new dataset ();

xmlds .readxml (xmlfilepath , xmlreadmode .inferschema );

int dscount = xmlds .tables ["livestocklist" ].rows .count ;

int index = 0;

foreach (datarow dr in xmlds .tables ["livestocklist" ].rows )}}

XML資料匯入進資料庫,和從資料匯出XML資料

將xml資料匯入資料庫 匯入到兩張表 using system using system.collections.generic using system.linq using system.web using system.web.ui using system.web.ui.webcontrol...

匯入資料庫

進入cmd命令列 連線資料庫 sqlplus sys system as sysdba 刪除資料庫使用者 drop user hnsmz cascade 如果使用者刪除失敗,請重新啟動oracle服務 oracleservicesmz 與oracleoradb11g home1tnslistener...

EXCEL資料匯入資料庫

1 類設計,excel要據配置讀入dataset using system using system.data using system.collections using system.data.oledb namespace hkh.common 從excel匯入資料到dataset,帶有虛函式...