Ok,
I am lost now, I am just trying to read the documentation on odbc...here is
what I have so far. This seems to work...or at least not give any errors.
How do I know get to the result set in the select statement to move this
data somewhere else? I just want to get the entire result set so I can load
it into another db.
Thanks,
Eddie
<?
$connect=odbc_connect('mytest','sa', '');
$stmt=odbc_prepare($connect, "select * from tablename");
$parms=array("sa","");
$eddie=odbc_execute($stmt, &$parms);
//$rc = odbc_fetch_into($eddie, $my_array);
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php