Help for this page

Select Code to Download


  1. or download this
    $test[0][0] = 'No';
    $test[0][1] = 'Letter';
    ...
    $test[6][2] = 'vi';
    $dbh = DBI->connect('dbi:AnyData(RaiseError=>1):');
    $dbh->func( 'testtable', 'ARRAY', @test, 'ad_import');
    
  2. or download this
    @test = [
         ['No','Letter','Roman'],
    ...
         ];
    $dbh = DBI->connect('dbi:AnyData(RaiseError=>1):');
    $dbh->func( 'testtable', 'ARRAY', @test, 'ad_import');