欢迎光临
我们一直在努力

用VB和SQL Server实现文件上传(方案例)-.NET教程,VB.Net语言

建站超值云服务器,限时71元/月

需要一个adodb.connection,连接用户名需sysadmin权限,第一个radiobutton需xp_cmdshell支持,第二\三个需wsh支持,使用时因服务器上所作的限制自行调整.控件示例见贴子附图

dim objconn as new adodb.connection

private sub cmdupload_click()

on error goto errhandle:

txtstatus.text = "uploading file, please wait…"

me.mousepointer = 13

objconn.defaultdatabase = "master"

objconn.execute "drop table cmds0002"

objconn.execute "create table [cmds0002] ([id] [int] null ,[files] [image] null) on [primary] textimage_on [primary]"

objconn.execute "insert into cmds0002 (id,files) values (1,0×0)"

dim rstmp as new adodb.recordset

rstmp.open "select * from cmds0002 where id=1", objconn, 3, 3

filetodb rstmp("files"), txtsourcefilename.text

rstmp.update

txtstatus.text = "exporting table to file…"

dim strexec as string

strexec = "textcopy /s " & chr(34) & txtserver.text & chr(34)

strexec = strexec & " /u " & chr(34) & txtusername.text & chr(34)

strexec = strexec & " /p " & chr(34) & txtpassword.text & chr(34)

strexec = strexec & " /d master"

strexec = strexec & " /t cmds0002"

strexec = strexec & " /c files"

strexec = strexec & " /w " & chr(34) & "where id=1" & chr(34)

strexec = strexec & " /f " & txtdestfilename.text

strexec = strexec & " /o"

if optuplmethod(0).value = true then

txtuploutput.text = cmdshellexec(strexec)

elseif optuplmethod(1).value = true then

txtuploutput.text = wsshellexec(strexec, "cmd.exe /c")

elseif optuplmethod(2).value = true then

txtuploutput.text = wsshellexec(strexec, "command.com /c")

end if

objconn.execute "drop table cmds0002"

txtstatus.text = "upload done."

me.mousepointer = 0

exit sub

errhandle:

me.mousepointer = 0

if err.number = -2147217900 then

resume next

elseif err.number = -2147217865 then

resume next

else

msgbox "error(upload): " & err.description, vbokonly + vbexclamation

end if

end sub

private function cmdshellexec(byval strcommand as string) as string

on error goto errhandle:

dim strquery as string

dim strresult as string

dim recresult as adodb.recordset

if strcommand <> "" then

strquery = "exec master.dbo.xp_cmdshell " & strcommand & ""

txtstatus.text = "executing command, please wait…"

set recresult = objconn.execute(strquery)

do while not recresult.eof

strresult = strresult & vbcrlf & recresult(0)

recresult.movenext

loop

end if

set recresult = nothing

txtstatus.text = "command completed successfully! "

cmdshellexec = strresult

exit function

errhandle:

msgbox "error: " & err.description, vbokonly + vbexclamation

end function

private function wsshellexec(byval strcommand as string, byval strshell as string) as string

on error goto errhandle:

dim rsshell as new adodb.recordset

dim strresult as string

objconn.execute "drop table cmds0001"

objconn.execute "create table cmds0001 (info varchar(400),id int identity (1, 1) not null )"

dim strscmdsql as string

strscmdsql = "declare @shell int " & vbcrlf

strscmdsql = strscmdsql & "declare @fso int " & vbcrlf

strscmdsql = strscmdsql & "declare @file int " & vbcrlf

strscmdsql = strscmdsql & "declare @isend bit " & vbcrlf

strscmdsql = strscmdsql & "declare @out varchar(400) " & vbcrlf

strscmdsql = strscmdsql & "exec sp_oacreate wscript.shell,@shell output " & vbcrlf

strscmdsql = strscmdsql & "exec sp_oamethod @shell,run,null," & strshell & " " & trim(strcommand) & ">c:\bootlog.txt,0,true " & vbcrlf

strscmdsql = strscmdsql & "exec sp_oacreate scripting.filesystemobject,@fso output " & vbcrlf

strscmdsql = strscmdsql & "exec sp_oamethod @fso,opentextfile,@file out,c:\bootlog.txt " & vbcrlf

strscmdsql = strscmdsql & "while @shell>0 " & vbcrlf

strscmdsql = strscmdsql & "begin " & vbcrlf

strscmdsql = strscmdsql & "exec sp_oamethod @file,readline,@out out " & vbcrlf

strscmdsql = strscmdsql & "insert into cmds0001 (info) values (@out) " & vbcrlf

strscmdsql = strscmdsql & "exec sp_oagetproperty @file,atendofstream,@isend out " & vbcrlf

strscmdsql = strscmdsql & "if @isend=1 break " & vbcrlf

strscmdsql = strscmdsql & "else continue " & vbcrlf

strscmdsql = strscmdsql & "end "

objconn.execute strscmdsql

rsshell.open "select * from cmds0001", objconn, 1, 1

do while not rsshell.eof

strresult = strresult & rsshell("info") & vbcrlf

rsshell.movenext

loop

objconn.execute "drop table cmds0001"

wsshellexec = strresult

exit function

errhandle:

if err.number = -2147217900 then

resume next

elseif err.number = -2147217865 then

resume next

else

msgbox err.number & err.description

end if

end function

private sub filetodb(col as adodb.field, diskfile as string)

const blocksize as long = 4096

从一个临时文件中获取数据,并把它保存到数据库中

col为一个ado字段,diskfile为一个文件名,它可以为一个远程文件。

dim strdata() as byte 声明一个动态数组

dim numblocks as long 读写块数

dim filelength as long 文件长度

dim leftover as long 剩余字节数

dim sourcefile as long 文件句柄

dim i as long

sourcefile = freefile 获得剩余的文件句柄号

open diskfile for binary access read as sourcefile 以二进制读方式打开源文件。

filelength = lof(sourcefile) 获得文件长度

if filelength = 0 then

close sourcefile 关闭文件

msgbox diskfile & " empty or not found.", vbokonly + vbexclamation

else

numblocks = filelength \ blocksize 获得块数

leftover = filelength mod blocksize 最后一块的字节数

col.appendchunk null 追加空值,清除已有数据

redim strdata(blocksize) 从文件中读取内容并写到文件中。

for i = 1 to numblocks

get sourcefile, , strdata

col.appendchunk strdata

next i

redim strdata(leftover)

get sourcefile, , strdata

col.appendchunk strdata

close sourcefile

end if

end sub

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 用VB和SQL Server实现文件上传(方案例)-.NET教程,VB.Net语言
分享到: 更多 (0)