You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
15
extend/app_alipay/lotusphp_runtime/DB/DbAdapterFactory.php
Executable file
15
extend/app_alipay/lotusphp_runtime/DB/DbAdapterFactory.php
Executable file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
class LtDbAdapterFactory
|
||||
{
|
||||
public function getConnectionAdapter($connectionAdapterType)
|
||||
{
|
||||
$LtDbConnectionAdapter = "LtDbConnectionAdapter" . ucfirst($connectionAdapterType);
|
||||
return new $LtDbConnectionAdapter;
|
||||
}
|
||||
|
||||
public function getSqlAdapter($sqlAdapterType)
|
||||
{
|
||||
$LtDbSqlAdapter = "LtDbSqlAdapter" . ucfirst($sqlAdapterType);
|
||||
return new $LtDbSqlAdapter;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user