Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DbConnectionAdapter.php 362B

123456789101112
  1. <?php
  2. interface LtDbConnectionAdapter
  3. {
  4. /**
  5. * @todo 兼容使用Unix Domain Socket方式连接数据库(即:可以不指定port)
  6. */
  7. public function connect($connConf);
  8. public function exec($sql, $connResource);
  9. public function query($sql, $connResource);
  10. public function lastInsertId($connResource);
  11. public function escape($sql, $connResource);
  12. }