i have one question about PDO::exec() and bindparams.
exec($sql) return # of affected rows. but u can bind params to exec() like prepare->bindParams()->execute()?
If answer is no, u can get affected rows with any trick in prepare->bindParams()->execute()? (I understand execute only returns true/false)
Thanks for help.
mysql_query(), except it doesn't return result handles. It doesn't support binding, because its main argument is a raw sql string. – Marc B Aug 19 '12 at 4:26