匯入EXCEL 和TXT 源自鏡子

2021-04-07 02:16:17 字數 1227 閱讀 5195

set objrs=strd***b_login.execute("select * from data_administrator")

if not objrs.eof then

'--將表的列名先寫入excel 按資料庫表名生成

for each x in objrs.fields

strline = strline & x.name & chr(9)

next

'--將表的列名先寫入excel 按自己設定的表名生成

strline="國企業(網路公司_05_12)"

myfile.writeline strline

myfile.writeline

strline=" 編號"& chr(9) &" 姓名"& chr(9) &" 日期"& chr(9) &" 星期"& chr(9) &" 班次"& chr(9) &" 班型別"& chr(9) &" 上下班"& chr(9) &" 打卡時間"& chr(9) &" 說明"& chr(9) &" 備註"

生成txt檔案源**(已經驗證可用):

<%

dim rs,sql,filename,fso,myfile,x

'讀取資料.注意excel的欄位名要是英文,不是會錯誤

set rsread=server.createobject("adodb.recordset")

rsread.open "select * from [sheet4$]",cn,1,1

do until rsread.eof

'寫入資料庫.

strd***b.execute "insert into data_work(user_name,date_in,m_week,m_work,m_work_type,card_time,m_explains,m_desc)values('"& rsread.fields(" user_name")&"','" &rsread.fields(" date_in") & "','" &rsread.fields(" week") & "','" &rsread.fields(" work") & "','" &rsread.fields(" work_type") & "','" &rsread.fields(" card_time") & "','" &rsread.fields(" explains") & "','" &rsread.fields(" desc") & "')"

rsread.movenext

loop

%>

讀取excel和txt資料

1.建立一個file檔案物件 並獲取資料 file file new file 檔案絕對位置 包含檔名和檔案字尾 2.建立一個excel物件 workbook wb workbook.getworkbook file 3.獲取excel每頁的資訊 一個excel 中可以有很多頁,在excel下方切換...

Excel的匯入和匯出

操作excel的依賴的poi包 org.apache.poi poi3.14 org.apache.poi poi ooxml 3.14 org.apache.poi poi ooxml schemas 3.14 匯入檔案的控制層 description 匯入excel資料 author lcy p...

PL SQL匯入資料 cvs和excel

pl sql支援多種格式的資料匯入,這裡說明cvs和excel的格式匯入。1 cvs格式匯入 2 在下面的 配置 一般 選擇你要匯入的列數 一定要 cvs中的列數,否則格式會亂 如果檔案有 列名的 一定要把 標題名 勾選上,否則會把標題當成資料進行插入,造成錯誤,引號字元 我也不清楚。3 接著,在左...

Excel匯入和匯出幫助類

using system using system.collections.generic using system.linq using system.web using system.io using system.text using npoi.hssf.usermodel using sys...

Oracle資料的匯入和匯出(Excel)

原文見 對oracle表中的資料匯出到excel中 以plsql developer為例 如果資料少量的話,可以直接fetch all pages and copy to excel,這樣就可以匯出到excel了,但如果資料量比較大,不能fetch所有的資料,則可以用oraxcel外掛來匯出資料。首...