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);