search
Homephp教程php手册ECMall的MySQL数据调用的简单方法

很多ecmall开发者会问,怎么使用Ecmall的mysql类库进行数据调用。从原理上来讲Ecmall的数据调用是以数据模块+模块类库的方式进行mysql数据调用的,所有数据模块都存储在includesmodels 目录下,这些调用对于初学者来讲是比较复杂的,例如商品的数据调用函数,不能用在店铺的数据调用上,每个数据表都有自己的函数自己的类库和少量的公共类库。因此初学者来讲,调用mysql数据很困难。

现在讲解一个简单的调用方法能满足95%以上的mysql数据调用请求。足够对ecmall进行二次开发。

例子:

$db = &db();		// 第一步赋值数据库类库,
$db->query(sql);	// 第二步执行mysql 语句;

常用的数据库函数:

  1. 得到一行数据
  2. $user=$db->getrow("select * from ecm_member where user_id=111");
    print_r($user);
    
  3. 得到一列数据
  4. $user=$db->getcol("select user_id from ecm_member ");
    print_r($user);
    
  5. 得到所有数据
  6. $user=$db->getall("select user_id from ecm_member ");
    foreach ( $user as $row)
    {
    	print_r($row);
    }
    
  7. 得到一个数值
  8. $user=$db->getone("select count(*) from ecm_member ");
    echo $user;
    
  9. 执行sql语句
  10. $db->query("update ecm_member  set user_name='aaa' ");
    
  11. 得到最后一个ID
  12. $db->query("insert ecm_member  set user_name='aaa' ");
    $user_id = $db->insert_id();
    echo $user_id;
    

详细的例子:

function userlist()
{
	$db = &db();
	$user=$db->getall("select user_id from ecm_member ");
	foreach ( $user as $row)
	{
		echo "用户姓名=".$row['user_name']." 用户电话=".$row['tel'];
	}
}
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version