This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我正在尝试将字节数组插入表中。它有一个 blob 属性。这就是我正在做的设置我的数组:
Dim array() as Byte
Dim lngSize as long
lngSize = FileLen(sFilePath)
open sFilePath for Binary as #1
Redim array(lngSize) as byte
Get #1, ,array
Close #1