Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Inserting file into a database

by rbc (Curate)
on Jan 09, 2003 at 18:24 UTC ( [id://225596]=note: print w/replies, xml ) Need Help??


in reply to Inserting file into a database

Hi Anony,

I don't use Access very much. I usually use Oracle and
Oracle comes with a utility called sqlldr which is
used to load files into database tables. I bet Access
has similar functionality.

If not or if you just feel like it you can go with
the roll-your-own approach. But I would suggest using
"place holders" in your SQL ...
my $statement = "Insert into tableOne (filename, letter) values (?, ?) +"; ... $sth->execute($filename, $letter);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (6)
As of 2024-03-28 11:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found