|
|
@ -30,7 +30,8 @@ var protected AcediaObject resultObject; |
|
|
|
|
|
|
|
|
|
|
|
protected function DBReadingHandler( |
|
|
|
protected function DBReadingHandler( |
|
|
|
Database.DBQueryResult result, |
|
|
|
Database.DBQueryResult result, |
|
|
|
AcediaObject data) |
|
|
|
AcediaObject data, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
default.resultObject = data; |
|
|
|
default.resultObject = data; |
|
|
@ -39,7 +40,8 @@ protected function DBReadingHandler( |
|
|
|
|
|
|
|
|
|
|
|
protected function DBKeysHandler( |
|
|
|
protected function DBKeysHandler( |
|
|
|
Database.DBQueryResult result, |
|
|
|
Database.DBQueryResult result, |
|
|
|
DynamicArray keys) |
|
|
|
DynamicArray keys, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
default.resultKeys = keys; |
|
|
|
default.resultKeys = keys; |
|
|
@ -47,7 +49,8 @@ protected function DBKeysHandler( |
|
|
|
|
|
|
|
|
|
|
|
protected function DBCheckHandler( |
|
|
|
protected function DBCheckHandler( |
|
|
|
Database.DBQueryResult result, |
|
|
|
Database.DBQueryResult result, |
|
|
|
Database.DataType type) |
|
|
|
Database.DataType type, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
default.resultDataType = type; |
|
|
|
default.resultDataType = type; |
|
|
@ -55,23 +58,30 @@ protected function DBCheckHandler( |
|
|
|
|
|
|
|
|
|
|
|
protected function DBSizeHandler( |
|
|
|
protected function DBSizeHandler( |
|
|
|
Database.DBQueryResult result, |
|
|
|
Database.DBQueryResult result, |
|
|
|
int size) |
|
|
|
int size, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
default.resultSize = size; |
|
|
|
default.resultSize = size; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function DBWritingHandler(Database.DBQueryResult result) |
|
|
|
protected function DBWritingHandler( |
|
|
|
|
|
|
|
Database.DBQueryResult result, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function DBIncrementHandler(Database.DBQueryResult result) |
|
|
|
protected function DBIncrementHandler( |
|
|
|
|
|
|
|
Database.DBQueryResult result, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function DBRemoveHandler(Database.DBQueryResult result) |
|
|
|
protected function DBRemoveHandler( |
|
|
|
|
|
|
|
Database.DBQueryResult result, |
|
|
|
|
|
|
|
Database source) |
|
|
|
{ |
|
|
|
{ |
|
|
|
default.resultType = result; |
|
|
|
default.resultType = result; |
|
|
|
} |
|
|
|
} |
|
|
|