Large Objects and Java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • canso
    New Member
    • Jul 2007
    • 3

    #1

    Large Objects and Java

    How do i declare attributes that are supposed to be stored as LOB... I want to store files and videos in my application
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Have you checked the API documentation for the jdbc framework? It allows you
    to open input and output streams on BLOBs and CLOBs, so you can read and/or
    write data (bytes) from/to those LOBs. The rest just depends on your imagination.

    kind regards,

    Jos

    Comment

    Working...