本文整理汇总了PHP中DBConnection::open方法的典型用法代码示例。如果您正苦于以下问题:PHP DBConnection::open方法的具体用法?PHP DBConnection::open怎么用?PHP DBConnection::open使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBConnection
的用法示例。
在下文中一共展示了DBConnection::open方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: executeSelect
/**
* Executes an SQL SELECT statement
*
* @param rdbms.DBConnection conn
* @param rdbms.Peer peer
* @param rdbms.join.Joinprocessor jp optional
* @param bool buffered default TRUE
* @return rdbms.ResultSet
*/
public function executeSelect(DBConnection $conn, Peer $peer, $jp = null, $buffered = true)
{
$statement = preg_replace('/object\\(([^\\)]+)\\)/i', '$1.' . implode(', $1.', array_keys($peer->types)), $this->statement);
if ($buffered) {
return $conn->query($statement, ...$this->arguments);
} else {
return $conn->open($statement, ...$this->arguments);
}
}
示例2: setDatabase
/**
* Method setDatabase()
*
* Define the database for store the NASP data
*
* @param string $hostname The hostname or IP of the server's database
* @param string $database The database's name
* @param string $user The database'user
* @param string $pass The database's password for the user specify
* @access public
*/
public function setDatabase($hostname = null, $database = null, $user = null, $pass = null)
{
//Makes the connection
self::$conn = DBConnection::open($hostname, $database, $user, $pass);
}