Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Help with DBD::Oracle Blobs

by fizbin (Chaplain)
on Mar 05, 2005 at 16:33 UTC ( [id://436919]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # MyDBI subclasses DBI to make execute more friendly
    # to users who have to pass strange options to bind_param
    ...
        }
        $sth->SUPER::execute();
      }
    
  2. or download this
    my $sth = $dbh->prepare(<<'');
    INSERT INTO sometable (x, y, z, blobby) VALUES (?, ?, ?, ?)
    
    $sth->execute('x', 'y', 'z', $blobdata, { ora_type => ORA_BLOB });
    
  3. or download this
    $sth->execute('x', 'y', 'z', [$blobdata, { ora_type => ORA_BLOB }] );
    
  4. or download this
    --
    @/=map{[/./g]}qw/.h_nJ Xapou cets krht ele_ r_ra/;
    map{y/X_/\n /;print}map{pop@$_}@/for@/
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://436919]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-04-25 13:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found