首页 >

织梦DedeCMS二次开发数据库操作查询、插入、更新、删除实例

织梦二次开发数据库操作查询 | 插入 | 更新 | 删除实例,代码如下

GetOne("Select * From dede_aaa where id = 75");//获取数据内容保存在数组$row中,通过下标可以将其调用出来print_r($row);//////////////////////////////将查询的若干条记录输出//////////////////////////////////$sql = "Select * from dede_aaa";$dsql->SetQuery($sql);//将SQL查询语句格式化$dsql->Execute();//执行SQL操作//通过循环输出执行查询中的结果while($rows = $dsql->GetArray()){echo $rows['name'];echo $rows['age'];}//或者采取这种方式输出内容while($rows = $dsql->GetObject()){echo $rows->id;echo $rows->Title;}//////////////////////////////插入一条记录///////////////////////////////$sql = "INSERT INTO `dede_aaa` (`name`,age) VALUES ('wanghaiping','23')";//插入记录数据库$dsql->SetQuery($sql);//格式化查询语句$dsql->ExecNoneQuery();//执行SQL操作$lastInsertID = $dsql->GetLastID(); //获取插入后的最后的ID,然后再传给下一个页面echo "最后插入数据的ID=".$lastInsertID;/////////////////////////////////////删除一条记录///////////////////////////$sql = "Delete From dede_aaa where id='78'";$dsql->SetQuery($sql);$dsql->ExecNoneQuery();//或者使用简化模式//$dsql->ExecNoneQuery("Delete From dede_member_flink where aid='$aid' And mid='".$cfg_ml->M_ID."';");//////////////////////////////////////更新一条记录//////////////////////////$upquery = "Update dede_aaa set name='xujiang',age='24' where id='80'";$rs = $dsql->ExecuteNoneQuery($upquery);?>


dede_aaa是织梦网站数据库表名,请修改为NI要操作的表名即可。

  • 织梦DedeCMS自增序号 自动增加数字序号 autoindex属性
  • 织梦DedeCMS自增序号 自动增加数字序号 autoindex属性 | 织梦DedeCMS自增序号 自动增加数字序号 autoindex属性 ...

  • 织梦DedeCMS 5.6升级至织梦DedeCMS5.7SP1后类目和发布人不显示
  • 织梦DedeCMS 5.6升级至织梦DedeCMS5.7SP1后类目和发布人不显示 | 织梦DedeCMS 5.6升级至织梦DedeCMS5.7SP1后类目和发布人不显示 ...

  • 织梦DedeCMS 大数据量时织梦DedeCMS 的优化
  • 织梦DedeCMS 大数据量时织梦DedeCMS 的优化 | 织梦DedeCMS 大数据量时织梦DedeCMS 的优化 ...