BFile column : bfile « Data Type « Oracle PL / SQL






BFile column

  

SQL> CREATE TABLE myTable (
  2    id           INTEGER PRIMARY KEY,
  3    bfile_column BFILE NOT NULL
  4  );

Table created.

SQL>
SQL> drop table myTable;

Table dropped.

   
    
  








Related examples in the same category

1.BFILENAME demo