×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Storing image file to database?

Storing image file to database?

Storing image file to database?

(OP)
I am trying to store an image to an Informix database. But no matter what I try I can't get it to work with simple SQL.

I have done a very simple proof of concept - what am I doing wrong?

CODE

CREATE TEMP TABLE tmpimg1 (id serial (101) primary key, pic byte) WITH NO LOG;
CREATE TEMP TABLE tmpimg2 (id serial (101) primary key, pic blob) WITH NO LOG;
CREATE TEMP TABLE tmpimg3 (id serial (101) primary key, pic clob) WITH NO LOG;

insert into tmpimg1 values (0,Filetoblob("C:\dev\draft.gif","client","tmpimg1","pic"));
insert into tmpimg1 (id,pic) values ( 0, Filetoblob( "C:\dev\draft.gif", "client") ) ;
insert into tmpimg1 values (0,Filetoblob("/tmp/draft.gif","client","tmpimg1","pic"));
insert into tmpimg1 values (0,Filetoblob('/tmp/draft.gif','server',"tmpimg1","pic"));

insert into tmpimg2 values (0,Filetoblob("C:\dev\draft.gif","client","tmpimg2","pic"));
insert into tmpimg2 (id,pic) values ( 0, Filetoblob( "C:\dev\draft.gif", "client") ) ;
insert into tmpimg2 values (0,Filetoblob("/tmp/draft.gif","client","tmpimg2","pic"));
insert into tmpimg2 values (0,Filetoblob('/tmp/draft.gif','server',"tmpimg2","pic"));

insert into tmpimg3 values (0,Filetoclob("C:\dev\draft.gif","client","tmpimg3","pic"));
insert into tmpimg3 (id,pic) values ( 0, Filetoclob( "C:\dev\draft.gif", "client") ) ;
insert into tmpimg3 values (0,Filetoclob("/tmp/draft.gif","client","tmpimg3","pic"));
insert into tmpimg3 values (0,Filetoclob('/tmp/draft.gif','server',"tmpimg3","pic"));

drop table tmpimg1;
drop table tmpimg2;
drop table tmpimg3;

I keep getting errors on every single insert line (I try running them individually). But I still can't seem to figure out what I am doing wrong.

Any suggestions?

  Einstein47
“Evil abounds when good men do nothing.“ - Nelson R.
[Starbase47.com]

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close