dedecms $dsql对象(sql server对象)

在当今的互联网时代,网站建设已经成为企业、个人展示自身形象和信息的必要手段。而DedeCMS作为一款功能强大的内容管理系统,受到了广大用户的喜爱。在这篇文章中,我们将深入探讨DedeCMS中的核心组件——$dsql对象,帮助你掌握网站核心数据库操作的艺术。

一、什么是$dsql对象

$dsql对象是DedeCMS中用于数据库操作的核心组件。它提供了丰富的数据库操作方法,如查询、更新、删除等,使开发者能够轻松地实现数据库操作。在DedeCMS中,$dsql对象是必须掌握的核心技术之一。

二、$dsql对象的创建

在使用$dsql对象之前,我们需要先了解如何创建它。在DedeCMS中,创建$dsql对象非常简单,只需调用dedeDsql类即可。以下是一个创建$dsql对象的示例:

“`php

$dsql = new dedeDsql();

“`

创建$dsql对象后,我们就可以使用它进行数据库操作了。

三、$dsql对象的常用方法

$dsql对象提供了丰富的数据库操作方法,以下是一些常用的方法:

方法名称 说明
SetQuery 设置查询语句
Execute 执行查询语句,返回结果集
FetchOne 获取查询结果集中的一条数据
FetchArray 获取查询结果集中的所有数据
GetOne 获取单条记录的值
GetField 获取单条记录的字段值
Update 更新数据
Insert 插入数据
Delete 删除数据

以下是一个使用$dsql对象执行查询的示例:

“`php

// 设置查询语句

$dsql->SetQuery(“

dedecms数据库,用php调用sql最新文章

这是我之前写的一个类,和你的需求基本一样,你拿去自己改改吧

<?php

$GLOBALS['web_channel_dir']='dir/inc';

//设置系统根路径

define('WEB_ROOT',$GLOBALS['web_channel_dir']? substr(dirname(__FILE__), 0,- strlen($GLOBALS['web_channel_dir'])): dirname(__FILE__).'/');

abstract class BaseDataQuery

{

/*

*构造方法

*/

function __construct($pid,$cid,$xid)

{

if(!file_exists(WEB_ROOT.'data/common.inc.php'))

{

echo”配置错误”;

exit();

}else{

require_once WEB_ROOT.'data/common.inc.php';

}

$this->cfg_dbhost=$cfg_dbhost;

$this->cfg_dbname=$cfg_dbname;

$this->cfg_dbuser=$cfg_dbuser;

$this->cfg_dbpwd=$cfg_dbpwd;

$this->cfg_dbprefix=$cfg_dbprefix;

$this->cfg_db_language=$cfg_db_language;

$this->link=$this->connect();

}

function connect()

{

//global$link,$host,$dbuser,$dbpasswd,$db;

$link= mysql_connect($this->cfg_dbhost,$this->cfg_dbuser,$this->cfg_dbpwd) or

die(“Could not connect:”. mysql_error().””.$sql);

mysql_select_db($this->cfg_dbname);

mysql_query(“SET NAMES UTF8”);//设置数据库的要查询结果的字符集

return$link;

}

function Query($sql)

{

if(!$this->link)

$this->link=$this->connect();

$result= mysql_query($sql,$this->link) or

die(“Could not query:”. mysql_error().””.$sql);

return$result;

}

function getAll($sql)

{

$res=$this->Query($sql);

if($res!== false)

{

$arr= array();

while($row= mysql_fetch_assoc($res))

{

$arr[]=$row;

}

return$arr;

}

else

{

return false;

}

}

function getAll_cache($sql)

{

$res=$this->Query($sql);

if($res!== false)

{

$arr= array();

while($row= mysql_fetch_assoc($res))

{

$arr[]=$row;

}

return$arr;

}

else

{

return false;

}

}

function getOne($sql,$limited= false)

{

if($limited== true)

{

$sql= trim($sql.' LIMIT 1');

}

$res=$this->Query($sql);

if($res!== false)

{

$row= mysql_fetch_row($res);

if($row!== false)

{

return$row[0];

}

else

{

return'';

}

}

else

{

return false;

}

}

/**

*得到子栏目ID

*$reid上线id

*/

function get_child($reid)

{

$child_sql=”SELECT id FROM dede_arctype WHERE reid=”.$reid;

$res=$this->getAll($child_sql);

if(empty($res)){

return$reid;

}

foreach($res AS$row)

{

if(!empty($row['id']))

{

$arr[]=$row['id'];

$this->get_child($row['id']);

}

}

$str= join(“,”,$arr);

return$str;

}

/**

*得到子栏目名称与id

*$reid上级id

*/

function get_child_name($reid)

{

$child_sql=”SELECT id,typename,reid FROM dede_arctype WHERE reid=”.$reid;

$res=$this->getAll($child_sql);

return$res;

}

function get_ic_name($id)

{

$child_sql=”SELECT typename FROM dede_arctype WHERE id=”.$id;

$res=$this->getAll($child_sql);

return$res;

}

/*

*数据查询

*$flag(需要查询的标记例头条[h]推荐[c]幻灯[f]特荐[a]滚动[s]加粗[b]图片[p]跳转[j])

*$typeid需要查询的栏目id(22,23,24,25)

*$len需要查询的数据长度如果$len是数据就是limit 1,100形式如果是字符就是limit 100如果$len不存就是不限止条数

**/

function query_data($queryInfo)

{

$queryInfo['flag']?$flag=$queryInfo['flag']:$flag= false;

$typeid=$queryInfo['typeid'];

$queryInfo['len']?$len=$queryInfo['len']:$len= false;

$field=$queryInfo['field'];

$queryInfo['order']?$order=$queryInfo['order']:$order= false;

$queryInfo['channel']?$channel=$queryInfo['channel']:$channel= false;

$queryInfo['where']?$where=” AND”.$queryInfo['where']:$where=””;

$queryInfo['typeid2']?$typeid2=”AND typeid2 in(“.$queryInfo['typeid2'].”)”:$typeid2=””;

$queryInfo['table']?$table=$queryInfo['table']:$table=”dede_archives”;

//定义查询数据标识(头条,图片,推荐)

if($flag)

{

$flag=”and find_in_set('$flag',flag)”;

}else{

$flag=””;

}

//查询条数

if($len)

{

if(is_array($len))

{

$len=”limit”.$len[0].”,”.$len[1];

}else{

$len=”limit 0,”.$len;

}

}else{

$len=””;

}

//定义排序条件

if(isset($order)&& is_array($order))

{

$orderarr= array();

foreach($order as$key=>$value)

{

$orderarr[]=$key.””.$value;

}

$orderstr= join(“,”,$orderarr);

}

elseif($order=='rand')

{

$orderstr=” rand(),id desc”;

}

elseif($order!='')

{

$orderstr=$order;

}

else

{

$orderstr=”pubdate desc”;

//$orderstr=$order;

}

//定义查询模型

if($channel)

{

$channel=”AND channel=”.$channel;

}elseif($channel==”null”){

$channel=””;

}

else

{

$channel=”AND channel= 1″;

}

//定义查询字段

if($field)

{

if(is_array($field))

{

$field= join(“,”,$field);

}

$sql=”select”.$field.” from”.$table.” WHERE arcrank>-1 and typeid in(“.$typeid.”)”.$typeid2.$flag.””.$channel.”$where ORDER BY”.$orderstr.””.$len;

}else{

//根剧栏目查询新闻

$sql=”select id,title,pubdate from”.$table.” WHERE arcrank>-2 and typeid in(“.$typeid.”)”.$typeid2.$flag.””.$channel.”$where ORDER BY”.$orderstr.””.$len;

//echo”<br/>”;

}

if($queryInfo['debug']){

$debugstr=”this is Debug:[$sql ]”;

return$debugstr;

}

$result=$this->getAll($sql);

return$result;

}

}

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享