![]() |
Alexey admin 10/9/2007 |
Hi, |
|
hfg 10/10/2007 |
Sorry to jump in on someone else's posting, but this really peaked my interest. I have what maybe a similar situation and would be interested in the possibility of moving data from a MySQL DB on one server to a Oracle on another. |
![]() |
Alexey admin 10/11/2007 |
Hi, $oraconn=oci_connect("username","password","db"); $sql = insert into TableName (Field1,Field2) values (....)"; $stmt=oci_parse($oraconn,$sql); oci_execute($stmt); oci_close($oraconn); |
|
hfg 10/11/2007 |
As long as we are on the topic what would be the code to go the other direction. An PHPRunner project based on Oracle going to a MySQL DB? |
![]() |
Alexey admin 10/15/2007 |
Hi, |