|
楼主 |
发表于 2011-3-16 14:36:02
|
显示全部楼层
谢谢大家,问题已经解决,就是构造一条包含执行存储过程的sql语句串,
$entry_id=$_POST['entry_id'];
$body=$_POST['body'];
$author=$_POST['author'];
$sqlStr="declare @ReturnCode int;
exec @ReturnCode=insert_comments2 ".$entry_id.",'".$body."','.$author.';
select @ReturnCode rc";
$query = $this->db->query($sqlStr)
就行了 |
|