设置默认操作的表名
备注: 不建议使用纯数字的表名称
public function setTable(string $name)
数据库表名
true 代表成功, false 代表失败
<?php $configs = array( 'dsn' => array('host' => '127.0.0.1', 'dbname' => 'test', 'port' => 6666), 'username' => 'test', 'password' => 'AbcdefRDvgedf', ); $mysql = new Asf_Db_Adapter_Mysql($configs); var_dump($mysql->setTable('test1'));