From a615c139e62db5554c4091e0595b8b9e3d7afb0b Mon Sep 17 00:00:00 2001 From: Impact Date: Thu, 14 Jan 2021 15:50:15 +0100 Subject: [PATCH] Update note about non-existing SQL_MoreResults (#1416) --- plugins/include/dbi.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/dbi.inc b/plugins/include/dbi.inc index f74a2c56..80dd94cc 100644 --- a/plugins/include/dbi.inc +++ b/plugins/include/dbi.inc @@ -162,7 +162,7 @@ methodmap DBResultSet < Handle // Fetches a row from the current result set. This must be // successfully called before any results are fetched. // - // If this function fails, _MoreResults can be used to + // If this function fails, MoreRows can be used to // tell if there was an error or the result set is finished. // // @return True if a row was fetched, false otherwise. @@ -797,7 +797,7 @@ native bool SQL_FieldNameToNum(Handle query, const char[] name, int &field); * Fetches a row from the current result set. This must be * successfully called before any results are fetched. * - * If this function fails, SQL_MoreResults() can be used to + * If this function fails, SQL_MoreRows() can be used to * tell if there was an error or the result set is finished. * * @param query A query (or statement) Handle.