Help for this page

Select Code to Download


  1. or download this
    $dsnado = "DBI:ADO:Provider=vfpoledb;DSN=FoxPro;";<br />
    $dbhfox = DBI->connect ($dsnado, '', '');<br />
    
  2. or download this
    $q="SELECT order_bill_n, srok_date FROM orders WHERE ALLTRIM(UPPER(ord
    +er_bill_n)) LIKE '%23-B%' order by order_bill_n desc ";<br />
    
    $sthfox=$dbhfox->prepare($q) or die "Can't prepare statement: $DBI::er
    +rstr";<br />
    
    $sthfox->execute() or die "Can't execute statement: $DBI::errstr";<br 
    +/><br />