Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: One Question about DBF

by jZed (Prior)
on Oct 18, 2007 at 17:22 UTC ( [id://645779]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    $select->execute();
    $dbhC->do("CREATE TABLE outTable AS IMPORT(?)",{},$select);
    __END__
    
  2. or download this
    my $dbhX = DBI->connect ( Xbase connection info);
    my $dbhA = DBI->connect( 'dbi:AnyData:' ); 
    ...
    my $sth = $dbhX->prepare( Select SQL );
    $sth->execute();
    $dbhA->do("CREATE TABLE outfile AS SELECT * FROM ?",{}, $sth);
    

Log In?
Username:
Password:

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

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

    No recent polls found