using (sqlconnection conn = new sqlconnection(connectstring))
string cmdtext = "select top 10 from customers;select lastname,firstname from employees";
sqlcommand cmd = new sqlcommand(cmdtext,conn);
cmd.connection.open();
sqldatareader reader = cmd.executereader();
do {
while (reader.read)
while (reader.nextresult());
response.write(sb.tostring);
SQL多結果集匯出Excel
由於本專案工作中需要,有時會匯出一些資料給客戶,但又不是每次都需要,可能這次用了下次可能就不會使用,匯出資料,我們正在做的乙個專案中與四川地區有關,所以匯出資料就有如下需求 1 按各市匯出資料,把第個市名作為sheet名 這到沒什麼難就是21個地市州,查出來粘到exc el中 2 把各市各區縣志出乙...
oledb對多結果集的處理
1.建立乙個簡單表及儲存過程 create table sp table username varchar 30 age int create procedure test sp username varchar 30 age int,out intoutput asinsert into sp t...
關於多結果集的儲存過程的處理
對於乙個存諸過程,如果返回的結果是我們預先知道的,那麼可以根據儲存過程定義的順序來進行 處理 事實上一般不會這樣 但對於複雜的多結果集的處理,如何定義乙個通用的流程?我們先看一下jdbc本身能為我們提供什麼?乙個儲存過程執行後返回的是boolean型 boolean flag callablesta...