rtgroup/dbconnect

此软件包最新版本(dev-master)没有可用的许可证信息。

数据库管理和SQL操作库

dev-master 2023-10-13 15:39 UTC

This package is auto-updated.

Last update: 2024-09-13 17:54:44 UTC


README

Composer组件:数据库管理。

组件安装

执行: composer require rtgroup/dbconnect

#使用示例:

$hostname="localhost"; // 主机名
$username="root"; // 数据库用户名。
$password="12345"; // 密码
$dbName="exempleDatabase"; // 数据库名称

数据库配置
$dbConfig=new Dbconfig($hostname,$username,$password,$dbName);

数据库连接
$db=new Dbconnect($dbConfig);

Dbconnect 类包含多个方法,可以执行各种SQL查询。