mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Fix for nextrow
This commit is contained in:
parent
9e852deb17
commit
54bc9cb10e
@ -177,6 +177,12 @@ static cell AMX_NATIVE_CALL mssql_query(AMX *amx, cell *params)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
c->res->MoveFirst();
|
||||||
|
} catch (_com_error &e) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -195,15 +201,12 @@ static cell AMX_NATIVE_CALL mssql_nextrow(AMX *amx, cell *params)
|
|||||||
if (c->res == NULL)
|
if (c->res == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (c->resStart) {
|
|
||||||
c->res->MoveFirst();
|
|
||||||
c->resStart = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (c->res->ADOEOF)
|
if (c->res->ADOEOF)
|
||||||
return 0;
|
return 0;
|
||||||
c->res->MoveNext();
|
c->res->MoveNext();
|
||||||
|
if (c->res->ADOEOF)
|
||||||
|
return 0;
|
||||||
return 1;
|
return 1;
|
||||||
} catch (_com_error &e) {
|
} catch (_com_error &e) {
|
||||||
_bstr_t bstrSource(e.Description());
|
_bstr_t bstrSource(e.Description());
|
||||||
|
Loading…
Reference in New Issue
Block a user