 |
|
รบกวนสอบถามเกี่ยวกับเรื่องการ Import file ลง database ค่ะช่วยแนะนำด้วยค่ะ vb.net2008 |
|
 |
|
|
 |
 |
|
ไม่มีใครช่วยได้เลยเหรอค่ะ
|
 |
 |
 |
 |
Date :
2010-03-22 19:59:45 |
By :
narak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ก็ยกตัวอย่างว่าเราจะสร้างไฟล์ excel ให้มี column(user_id,user_name,user_address)
แล้วจะทำการ Import column ดังกล่าวลงใน database ให้ข้อมูลตรงกันกับ column ใน database อ่ะค่ะพอเข้าใจไหม
|
 |
 |
 |
 |
Date :
2010-03-23 14:54:30 |
By :
narak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ก็บอกดิว่าจะ import ข้อมูลจาก excel ลง database
เล่นเขียน import file excel เขาก็นึกว่าจะเอาทั้งไฟล์ไปเก็บลง database อ่ะดิ
แนะนำนิดนึง
1. สร้าง connection กับ file excel ก่อน ด้วย oledb
2. ใช้ oledb command query จาก excel มาเก็บไว้ที่ datatable
3. ใช้ for each วนลูป datatable แล้ว insert ลง database
พอเข้าใจไหม
|
 |
 |
 |
 |
Date :
2010-03-23 16:04:40 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
บอกแต่วิธีมาไม่มีตัวอย่าง จะรู้ไหมล่ะค่ะ ขอ code ด้วยค่ะ
|
 |
 |
 |
 |
Date :
2010-03-23 17:16:24 |
By :
narak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ช่วยด้วยค่ะๆๆๆๆๆๆๆๆๆๆๆ
|
 |
 |
 |
 |
Date :
2010-03-24 08:34:05 |
By :
narak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Apart from using DTS and Export wizard, we can also use this query to export data from SQL Server2000 to Excel
Create an Excel file named testing having the headers same as that of table columns and use these queries
1 Export data to existing EXCEL file from SQL Server table
insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=D:\testing.xls;',
'SELECT * FROM [SheetName$]') select * from SQLServerTable
2 Export data from Excel to new SQL Server table
select *
into SQLServerTable FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=D:\testing.xls;HDR=YES',
'SELECT * FROM [Sheet1$]')
3 Export data from Excel to existing SQL Server table
Insert into SQLServerTable Select * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=D:\testing.xls;HDR=YES',
'SELECT * FROM [SheetName$]')
4 If you dont want to create an EXCEL file in advance and want to export data to it, use
EXEC sp_makewebtask
@outputfile = 'd:\testing.xls',
@query = 'Select * from Database_name..SQLServerTable',
@colheaders =1,
@FixedFont=0,@lastupdated=0,@resultstitle='Testing details'
(Now you can find the file with data in tabular format)
5 To export data to new EXCEL file with heading(column names), create the following procedure
create procedure proc_generate_excel_with_columns
(
@db_name varchar(100),
@table_name varchar(100),
@file_name varchar(100)
)
as
--Generate column names as a recordset
declare @columns varchar(8000), @sql varchar(8000), @data_file varchar(100)
select
@columns=coalesce(@columns+',','')+column_name+' as '+column_name
from
information_schema.columns
where
table_name=@table_name
select @columns=''''''+replace(replace(@columns,' as ',''''' as '),',',',''''')
--Create a dummy file to have actual data
select @data_file=substring(@file_name,1,len(@file_name)-charindex('\',reverse(@file_name)))+'\data_file.xls'
--Generate column names in the passed EXCEL file
set @sql='exec master..xp_cmdshell ''bcp " select * from (select '+@columns+') as t" queryout "'+@file_name+'" -c'''
exec(@sql)
--Generate data in the dummy file
set @sql='exec master..xp_cmdshell ''bcp "select * from '+@db_name+'..'+@table_name+'" queryout "'+@data_file+'" -c'''
exec(@sql)
--Copy dummy file to passed EXCEL file
set @sql= 'exec master..xp_cmdshell ''type '+@data_file+' >> "'+@file_name+'"'''
exec(@sql)
--Delete dummy file
set @sql= 'exec master..xp_cmdshell ''del '+@data_file+''''
exec(@sql)
After creating the procedure, execute it by supplying database name, table name and file path
EXEC proc_generate_excel_with_columns 'your dbname', 'your table name','your file path'
เลือกเอาครับ work สุดแล้ว
|
 |
 |
 |
 |
Date :
2010-03-24 16:50:31 |
By :
numenoy |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
vb.net2008 ค่ะ ไม่ใช่ C++
|
 |
 |
 |
 |
Date :
2010-03-25 22:43:34 |
By :
narak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่มีตัวอย่างแบบเต็มๆเลยเหรอค่ะ ได้โปรดใ...........
|
 |
 |
 |
 |
Date :
2010-03-30 15:42:33 |
By :
narak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|