初始化代码
This commit is contained in:
3
vendor/swoole/ide-helper/output/swoole_postgresql/aliases.php
vendored
Normal file
3
vendor/swoole/ide-helper/output/swoole_postgresql/aliases.php
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
class_alias(Swoole\Coroutine\PostgreSQL::class, Co\PostgreSQL::class);
|
||||
5
vendor/swoole/ide-helper/output/swoole_postgresql/constants.php
vendored
Normal file
5
vendor/swoole/ide-helper/output/swoole_postgresql/constants.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
define('SW_PGSQL_ASSOC', 1);
|
||||
define('SW_PGSQL_NUM', 2);
|
||||
define('SW_PGSQL_BOTH', 3);
|
||||
103
vendor/swoole/ide-helper/output/swoole_postgresql/namespace/Coroutine/PostgreSQL.php
vendored
Normal file
103
vendor/swoole/ide-helper/output/swoole_postgresql/namespace/Coroutine/PostgreSQL.php
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
|
||||
namespace Swoole\Coroutine;
|
||||
|
||||
class PostgreSQL
|
||||
{
|
||||
|
||||
public $error = null;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function connect($conninfo)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function query($query = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function prepare($stmtname, $query)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function execute($stmtname, $pv_param_arr)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function fetchAll($result = null, $result_type = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function affectedRows($result = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function numRows($result = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function metaData($table_name)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function fetchObject($result, $row = null, $class_name = null, $l = null, $ctor_params = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function fetchAssoc($result, $row = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function fetchArray($result, $row = null, $result_type = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function fetchRow($result, $row = null, $result_type = null)
|
||||
{
|
||||
}
|
||||
|
||||
public function __destruct()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user