|
楼主 |
发表于 2011-3-17 18:30:27
|
显示全部楼层
刚才查到mssql的这个解决方法, 似乎可行http://nan3120.blog.163.com/blog/static/1729002272011021101641421/
我改成如下代码,可惜运行出错, 有人能帮忙看看这个sql应该怎么写吗?谢谢
PHP复制代码
function get_by_id ($id)
{
$row = array();
$this->db->select('id,cast(Description as text)',FALSE);
$this->db->from('UploadImg');
$this->db->where('id', $id);
$query = $this->db->get();
if($query->num_rows() == 1)
{
$row = $query->row_array();
}
//echo $row['Description']; //取不到这个值
return $row;
}
复制代码 |
|