ASE, SQL, OLE, ADE
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Assing Array to an OLE object field in access database
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
182 Views, 1 Replies
07-15-2012 07:26 AM
Hi all
I am facing a problem in storing an array of integers to an OLE object field in the database, the used code for this action is listed below:
Sub Import_data()
Dim oAccesss As New ADODB.Connection
Dim oRecordset11 As New ADODB.Recordset
oAccesss.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=C:\DBS.mdb;"
oRecordset11.Open "Select OLEdata From Table1", oAccesss, adOpenKeyset, adLockOptimistic
Dim SS(10) As integer
For N = 0 To 9
SS(N) = rnd
Next N
With oRecordset11
.Fields.Item(0) = SS
.update
end with
End sub
Kindly Advice.
Re: Assing Array to an OLE object field in access database
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-18-2012 12:42 PM in reply to:
doicare
Better yet to save Handles instead of ObjectIds,
see example how to save texts to the newly created database
make sure you change all file names in this project to suit
See attached project for more
~'J'~
_____________________________________
C6309D9E0751D165D0934D0621DFF27919
C6309D9E0751D165D0934D0621DFF27919
