AV1611 Posted March 28, 2006 Share Posted March 28, 2006 anyone had success hooking to visual fox pro table? is there an odbc avail? I do access all the time, but seem to have problems with this... Quote Link to comment https://forums.phpfreaks.com/topic/6009-hooking-to-visual-fox-pro-table/ Share on other sites More sharing options...
ober Posted March 28, 2006 Share Posted March 28, 2006 I would imagine you could use ODBC or some sort of COM object to talk to it. I've never tried it, however.[a href=\"http://us2.php.net/manual/en/function.dbase-open.php\" target=\"_blank\"]http://us2.php.net/manual/en/function.dbase-open.php[/a]You might want to read the comment at the bottom of that page. Quote Link to comment https://forums.phpfreaks.com/topic/6009-hooking-to-visual-fox-pro-table/#findComment-21570 Share on other sites More sharing options...
AV1611 Posted March 28, 2006 Author Share Posted March 28, 2006 Well, I got it, but how do I make this not so sloooooooooowwwwwwwww....<?php$i=1;$user="";$host="localhost";$password="";$database = "teknetix";mysql_connect($host,$user,$password);mysql_select_db($database);$kill=mysql_query("delete from firstpass") or die("kill:".mysql_error());$connect = odbc_connect("QES9000", "", "");$query = "SELECT itdatshta.`it_date`, itdatshta.`insptype`, itdatshta.`process`, itdatshta.`product`, itdatshta.`descr`,itdatshta.`rev_level`, itdatshta.`serialno`, itdatshta.`failed`FROM `itdatshta` itdatshta";$result = odbc_do($connect, $query);WHILE($row=odbc_fetch_array($result)) {$it_date=$row['it_date'];$insptype=$row['insptype'];$process=$row['process'];$product=$row['product'];$descr=$row['descr'];$rev_level=$row['rev_level'];$serialno=$row['serialno'];$failed=$row['failed'];$query = mysql_query ("insert into firstpass (it_date, insptype, process, product, descr, rev_level, serialno, failed) values ('$it_date', '$insptype', '$process', '$product', '$descr', '$rev_level', '$serialno', '$failed')") or die(mysql_error()); echo $i; echo "\n"; $i++; }odbc_close($connect);?> Quote Link to comment https://forums.phpfreaks.com/topic/6009-hooking-to-visual-fox-pro-table/#findComment-21665 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.