A colleague has written a prototype program in PHP, using a MySQL
database.
It's a relatively simple app, with a restricted set of mysql commands
used (see below). The MySQL DB is being replaced with an Oracle DB
(same schema). My plan
1) globally replace the few mysql commands with intermediate
equivalents (such as myDB_connect for mysql_connect)
2) those central functions would then (for now) call the original
mysql function to prove the code still works
3) replace the "innards" of the myDB_ commands with calls to the
Oracle equivalent, including connecting to the new DB
4) make sure it all still works!
Can someone provide me an equivalency for these in Oracle? Or, where
an equivalent is not available, a reasonable alternative
command/procedure? Thanks.
Commands used:
mysql_connect(" localhost", "username", "userpass")
mysql_error();
mysql_select_db ();
$arry = mysql_query($qu ery)
$var = mysql_fetch_row ($arry)
$numvars = mysql_num_rows( $ varsarry )
mysql_data_seek ( $arry, $day )
$line = mysql_fetch_arr ay($result, MYSQL_ASSOC)
$currdata = mysql_fetch_ass oc( $currentarray )
That's the lot... thanks!
- Mark
database.
It's a relatively simple app, with a restricted set of mysql commands
used (see below). The MySQL DB is being replaced with an Oracle DB
(same schema). My plan
1) globally replace the few mysql commands with intermediate
equivalents (such as myDB_connect for mysql_connect)
2) those central functions would then (for now) call the original
mysql function to prove the code still works
3) replace the "innards" of the myDB_ commands with calls to the
Oracle equivalent, including connecting to the new DB
4) make sure it all still works!
Can someone provide me an equivalency for these in Oracle? Or, where
an equivalent is not available, a reasonable alternative
command/procedure? Thanks.
Commands used:
mysql_connect(" localhost", "username", "userpass")
mysql_error();
mysql_select_db ();
$arry = mysql_query($qu ery)
$var = mysql_fetch_row ($arry)
$numvars = mysql_num_rows( $ varsarry )
mysql_data_seek ( $arry, $day )
$line = mysql_fetch_arr ay($result, MYSQL_ASSOC)
$currdata = mysql_fetch_ass oc( $currentarray )
That's the lot... thanks!
- Mark
Comment