Home
AskTheOracle Blog
Oracle Tips & Tricks
Oracle Training
Oracle Tutorials
PL/SQL
SQL
Advanced Tutorials
Performance Tuning
Certification
Oracle 10g
Oracle 11g
Oracle and .Net
Oracle Utilities
Developer Tools
Oracle Questions?
Oracle News
Search This Site
About Us
Disclaimer
Privacy Policy
Contact Us
Subscribe To This Site
XML RSS
Add to Google
Add to My Yahoo!
Add to My MSN
Subscribe with Bloglines

Accessing blobs from an Oracle database in a Delphi 7 program

by Aliyev M
(Baku)

Hi, I create table in oracle 10g xe as:
create table empblob(
empno int,
name varchar2(30),
pic blob);

How can I insert and manage blob files this table with delphi7? I am working with ADO components.


Unfortunately we're not experts with Delphi but a quick hunt through the Oracle documentation came up with these reference manuals that should help.


You would probably find it easier though to use PL/SQL to manipulate your BLOB. DBMS_LOB (see Oracle Database PL/SQL Packages and Types Reference) contains various procedures and functions for accessing and manipulating LOBs.




Comments for
Accessing blobs from an Oracle database in a Delphi 7 program

Click here to add your own comments

May 17, 2011
BLOB issue
by: Anonymous

You need to enter the location of the pic in the drive in the Blob coloumn.

if pic is saved in c drive then
('c:\pic.bmp')

Click here to add your own comments

Join in and write your own page! It's easy to do. How?
Simply click here to return to Oracle Questions