If you want to store picture/multimedia files from VB into Oracle you will need to use blobs (binary large objects).
It's not terrifically simple ;-)
Basically you define a table like
create table content
(content_id number(6) primary key,
content_desc varchar(250),
content_image blob);
Then you have to initialise the blob so..
insert into table content
values(123456, 'New Dodge Viper Convertible 8,277 cc 8.3 liters V 10 front engine with 102.4 mm bore, 100.6 mm stroke, 9.6 compression ratio, overhead valve and two valves per cylinder', empty_blob());
Now you have to do the VB Coding part - so you will have to open a database connection, and use the appendchunk and getchunk functions.
There is a code example on another forum here:
Good luck.