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...
It sounds as though the form is not picking up the word '_Blank' as a keyword, and is instead naming the new window.
Then when you recall the method, it's inserting into the named window.
In this way, you could say target="one" and it will open a new window, but then always insert...
Hi ddrillich,
I have since submitted the design of the table exactly as you have yours.
Since they both depend on the primary key, it doesn't violate the first rule of normalisation, but I was wrestling with concept of a column called "content" which could contain either a blob for a...
Hi,
I'm trying to design a content management database (logical design only), but I'm stuck.
The database must store multimedia, and the documents must be searchable, so I have a content table.
Since some of the data will be blob, and some clob - I obviously can't store it all in the same...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.