17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
|
/**
|
||
|
* ExileServer_system_database_query_insertSingle
|
||
|
*
|
||
|
* Exile Mod
|
||
|
* www.exilemod.com
|
||
|
* © 2015 Exile Mod Team
|
||
|
*
|
||
|
* This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
|
||
|
* To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
|
||
|
*/
|
||
|
|
||
|
private["_parameters","_query","_result"];
|
||
|
_parameters = _this;
|
||
|
_query = [0, "SQL",_parameters] joinString ":";
|
||
|
_result = call compile ("extDB3" callExtension _query);
|
||
|
(_result select 1) select 0
|