kodi-app/kodi-pandabase-provider
Composer 安装命令:
composer require kodi-app/kodi-pandabase-provider
包简介
KodiApp Pandabase provider
关键字:
README 文档
README
ServiceProvider for KodiApp which provides Pandabase ORM.
Installation
$ composer require kodi-app/kodi-pandabase-provider
About PandaBase
Check the official documentation (It supports PandaBase version v0.20.0 or above)
Initialization of PandaBaseProvider
Initialization of one connection:
$application->run([ // ... KodiConf::SERVICES => [ // List of Services [ "class_name" => PandaBaseProvider::class, "parameters" => [ "name" => "test_connection", // Connection's name. "driver" => "mysql", // Same as PDO parameter "dbname" => "test_dbname", // Same as PDO parameter "host" => "127.0.0.1", // Same as PDO parameter "user" => "root", // Same as PDO parameter "password" => "" // Same as PDO parameter "attributes"=> [ attributeName => value, ... ] // Optional, PDO attributes ] ] // ... ], // ... ]);
Usage of Pandabase
// You can get ConnectionManager via Application singleton instance $db = Application::get("db"); // Or you can get it via ConnectionManager singleton instance $db = ConnectionManager::getInstance();
统计信息
- 总下载量: 23
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2017-09-09