i'm having bit of dillema when it comes to manipulating db lately
Usually, php code looks like this
Code: Select all
$db->execute( 'INSERT INTO TABLE( ROW, ROW2, ROW3 ) VALUES( $VAL, $VAL, $VAL );Code: Select all
$db->execute( 'SELECT STOR_PROC( $VAL, $VAL, $VAL ) );I'm just curious over any advantages/disadvantages anyone can see/have experienced with this approach etc.
Regards!