Database
video.txt
Associated article: Videos and Oracle Forms 10g
Tags: Database Web Development Tools Parallel JVM Languages
Published source code accompanying the article by Greg Williams in which he shows how you can take advantage of unstructured data in the database -- video, in this case -- and access this data from Oracle Forms.
Videos and Oracle Forms 10g
by Greg Williams
Listing One
CREATE TABLE MULTIMEDIA
(
ID INTEGER,
THEBLOB BLOB,
FILE_NAME VARCHAR2(50 BYTE) NOT NULL,
MIME_TYPE VARCHAR2(20 BYTE) NOT NULL
)
TABLESPACE table_DATA1
LOGGING
NOCOMPRESS
LOB (THEBLOB) STORE AS
(
TABLESPACE table_...


