mirror of
https://github.com/Mibew/java.git
synced 2025-02-02 06:44:43 +03:00
Added wrapper function for mysql_free_result
This commit is contained in:
parent
12e7d34929
commit
ef94a7eaf8
@ -407,6 +407,11 @@ function perform_query($query, $link)
|
||||
return $result;
|
||||
}
|
||||
|
||||
function db_free_result($result)
|
||||
{
|
||||
mysql_free_result($result);
|
||||
}
|
||||
|
||||
function select_one_row($query, $link)
|
||||
{
|
||||
$result = perform_query($query, $link);
|
||||
|
Loading…
Reference in New Issue
Block a user