...... Thanks!!Moderators: macek, egami, gesf
...... Thanks!!






<?php
// This function created for making ODBC connection with databses
// Created on 30th DEcember,2002 by Himadrish Laha himadrish@yahoo.com
$connectionstring = odbc_connect("PHPTST", "Admin", "");
$Query = "select Id, TstName from TestTable";
$queryexe = odbc_do($connectionstring, $Query);
while(odbc_fetch_row($queryexe))
{
$cid = odbc_result($queryexe, "Id");
$upno = odbc_result($queryexe, "TstName");
echo " $cid $upno \n";
}
odbc_close($connectionstring);
exit();
?>

Return to Other Database Engines
Users browsing this forum: No registered users and 2 guests