-
Notifications
You must be signed in to change notification settings - Fork 9
/
helper.js
103 lines (78 loc) · 2.01 KB
/
helper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
function getId() {
return helper.getId();
}
function setBreak() {
helper.setBreak();
}
function setTxType(txType) {
helper.setTxType(txType);
}
function getData(key) {
return helper.getData(key);
}
function putData(key, value) {
helper.putData(key, value);
}
function random(min, max) {
if (min > max) {
throw "Error: min value is greater than max value at random(min, max).";
}
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function randomString(length) {
if (length < 0) {
throw "Error: length is less than 0 at randomString(length).";
}
return String(helper.getRandomString(length));
}
function setRandomStringElements(elements) {
helper.setRandomStringElements(elements);
}
function takeConnection() {
return helper.takeConnection();
}
function getDatabaseProductName() {
return helper.getDatabaseProductName();
}
function getDatabaseMajorVersion() {
return helper.getDatabaseMajorVersion();
}
function getDatabaseMinorVersion() {
return helper.getDatabaseMinorVersion();
}
function commit() {
helper.commit();
}
function rollback() {
helper.rollback();
}
function query() {
return helper.query(arguments[0], Array.slice(arguments, 1));
}
function fetchAsArray() {
return helper.fetchAsArray(arguments[0], Array.slice(arguments, 1));
}
function execute() {
return helper.execute(arguments[0], Array.slice(arguments, 1));
}
function executeBatch() {
return helper.executeBatch(arguments[0], Array.slice(arguments, 1));
}
function trace(message) {
helper.trace(message);
}
function debug(message) {
helper.debug(message);
}
function info(message) {
helper.info(message);
}
function warn(message) {
helper.warn(message);
}
function error(message) {
helper.error(message);
}
function getScriptStackTrace(exception) {
return helper.getScriptStackTrace(exception.rhinoException);
}