Stored procedure to display the contents of the col_blob and col_clob columns : BLOB « PL SQL Data Types « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » PL SQL Data Types » BLOB 
21. 40. 3. Stored procedure to display the contents of the col_blob and col_clob columns
SQL>
SQL> create table myTable
  2  (key NUMBER PRIMARY KEY
  3  ,col_blob BLOB
  4  ,col_clob CLOB);

Table created.

SQL>
SQL> INSERT INTO myTable(key, col_blob, col_clobVALUES(1, HEXTORAW('101F'), 'ZYXW');

row created.

SQL>
SQL> INSERT INTO myTable(key, col_blob, col_clobVALUES(2, HEXTORAW('111101F'), 'ABCD');

row created.

SQL>
SQL> CREATE OR REPLACE PROCEDURE sp_inmyTable
  2  IS
  3          v_key1          myTable.key%TYPE;
  4          blobValue1         myTable.col_blob%TYPE;
  5          clobValue1         myTable.col_clob%TYPE;
  6          v_key2          myTable.key%TYPE;
  7          blobValue2         myTable.col_blob%TYPE;
  8          clobValue2         myTable.col_clob%TYPE;
  9          v_buffer        VARCHAR2(1000);
 10          v_offset        NUMBER;
 11          v_amount        NUMBER;
 12  BEGIN
 13          SELECT key, col_blob, col_clob
 14          INTO v_key1, blobValue1, clobValue1
 15          FROM myTable
 16          WHERE key = 1;
 17
 18          v_amount := 80;
 19          v_offset := 1;
 20          DBMS_LOB.READ (clobValue1, v_amount, v_offset, v_buffer);
 21          DBMS_OUTPUT.PUT_LINE ('Clob Contents => ' ||  v_buffer);
 22
 23          v_amount := 80;
 24          v_offset := 1;
 25          DBMS_LOB.READ (blobValue1, v_amount, v_offset, v_buffer);
 26          DBMS_OUTPUT.PUT_LINE ('Blob Contents => ' ||  v_buffer);
 27  END;
 28  /

Procedure created.

SQL>
SQL> exec sp_inmyTable
Clob Contents => ZYXW
Blob Contents => 101F

PL/SQL procedure successfully completed.

SQL>
SQL> drop table myTable;

Table dropped.

SQL>
SQL>
21. 40. BLOB
21. 40. 1. Blob locator
21. 40. 2. Insert into returning to blob type variable
21. 40. 3. Stored procedure to display the contents of the col_blob and col_clob columns
21. 40. 4. Deal with blob data
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.