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
|
#!/usr/bin/env lua
return {
connect = {
host = 'localhost',
port = 3306,
name = 'luadbi',
user = 'luadbi',
pass = 'testing12345!!!'
},
encoding_test = {
12435212,
463769,
8574678,
-12435212,
0,
9998212,
7653.25,
7635236,
0.000,
-7653.25,
1636.94783,
"string 1",
"another_string",
"really long string with some escapable chars: #&*%#;@'"
},
placeholder = '?',
have_last_insert_id = true,
have_typecasts = false,
have_booleans = false,
have_rowcount = true
}
|