Asf_Db_AbstractAdapter::setTable

设置默认操作的表名

备注: 不建议使用纯数字的表名称


Description

public function setTable(string $name)

Parameters

name

数据库表名

Return Values

true 代表成功, false 代表失败

Examples

Example #1 连接MySQL数据库

<?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'));