More resources

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-04-15 18:18:30 +05:30
parent 266588e74f
commit f15f67e604
3 changed files with 33 additions and 33 deletions

View File

@ -184,8 +184,8 @@ class PMA_DBI_Drizzle implements PMA_DBI_Extension
/**
* Run the multi query and output the results
*
* @param object $link connection object
* @param string $query multi query statement to execute
* @param resource $link connection object
* @param string $query multi query statement to execute
*
* @return result collection | boolean(false)
*/
@ -260,7 +260,7 @@ class PMA_DBI_Drizzle implements PMA_DBI_Extension
/**
* Check if there are any more query results from a multi query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return bool false
*/
@ -276,7 +276,7 @@ class PMA_DBI_Drizzle implements PMA_DBI_Extension
/**
* Prepare next result from multi_query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return bool false
*/

View File

@ -568,8 +568,8 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* selects given database
*
* @param string $dbname name of db to select
* @param object $link mysql link resource
* @param string $dbname name of db to select
* @param resource $link mysql link resource
*
* @return bool
*/
@ -582,9 +582,9 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* runs a query and returns the result
*
* @param string $query query to run
* @param object $link mysql link resource
* @param int $options query options
* @param string $query query to run
* @param resource $link mysql link resource
* @param int $options query options
*
* @return mixed
*/
@ -610,8 +610,8 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* Run the multi query and output the results
*
* @param object $link connection object
* @param string $query multi query statement to execute
* @param resource $link connection object
* @param string $query multi query statement to execute
*
* @return result collection | boolean(false)
*/
@ -728,7 +728,7 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* Check if there are any more query results from a multi query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return bool false
*/
@ -740,7 +740,7 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* Prepare next result from multi_query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return boolean false
*/
@ -752,7 +752,7 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* Store the result returned from multi query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return mixed false when empty results / result set when not empty
*/
@ -764,7 +764,7 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* Returns a string representing the type of connection used
*
* @param object $link mysql link
* @param resource $link mysql link
*
* @return string type of connection used
*/
@ -776,7 +776,7 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* Returns the version of the MySQL protocol used
*
* @param object $link mysql link
* @param resource $link mysql link
*
* @return integer version of the MySQL protocol used
*/
@ -798,7 +798,7 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* returns last error message or false if no errors occurred
*
* @param object $link connection link
* @param resource $link connection link
*
* @return string|bool $error or false
*/
@ -826,8 +826,8 @@ class PMA_DBI_Dummy implements PMA_DBI_Extension
/**
* returns the number of rows affected by last query
*
* @param object $link the mysql object
* @param bool $get_from_cache whether to retrieve from cache
* @param resource $link the mysql object
* @param bool $get_from_cache whether to retrieve from cache
*
* @return string|int
*/

View File

@ -35,8 +35,8 @@ interface PMA_DBI_Extension
/**
* selects given database
*
* @param string $dbname database name to select
* @param object $link connection object
* @param string $dbname database name to select
* @param resource $link connection object
*
* @return boolean
*/
@ -45,9 +45,9 @@ interface PMA_DBI_Extension
/**
* runs a query and returns the result
*
* @param string $query query to execute
* @param object $link connection object
* @param int $options query options
* @param string $query query to execute
* @param resource $link connection object
* @param int $options query options
*
* @return object|bool result
*/
@ -56,8 +56,8 @@ interface PMA_DBI_Extension
/**
* Run the multi query and output the results
*
* @param object $link connection object
* @param string $query multi query statement to execute
* @param resource $link connection object
* @param string $query multi query statement to execute
*
* @return result collection | boolean(false)
*/
@ -112,7 +112,7 @@ interface PMA_DBI_Extension
/**
* Check if there are any more query results from a multi query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return bool true or false
*/
@ -121,7 +121,7 @@ interface PMA_DBI_Extension
/**
* Prepare next result from multi_query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return bool true or false
*/
@ -130,7 +130,7 @@ interface PMA_DBI_Extension
/**
* Store the result returned from multi query
*
* @param object $link mysql link
* @param resource $link mysql link
*
* @return mixed false when empty results / result set when not empty
*/
@ -139,7 +139,7 @@ interface PMA_DBI_Extension
/**
* Returns a string representing the type of connection used
*
* @param object $link mysql link
* @param resource $link mysql link
*
* @return string type of connection used
*/
@ -148,7 +148,7 @@ interface PMA_DBI_Extension
/**
* Returns the version of the MySQL protocol used
*
* @param object $link mysql link
* @param resource $link mysql link
*
* @return integer version of the MySQL protocol used
*/
@ -164,7 +164,7 @@ interface PMA_DBI_Extension
/**
* returns last error message or false if no errors occurred
*
* @param object $link connection link
* @param resource $link connection link
*
* @return string|bool $error or false
*/
@ -182,7 +182,7 @@ interface PMA_DBI_Extension
/**
* returns the number of rows affected by last query
*
* @param object $link the connection object
* @param resource $link the connection object
*
* @return int
*/