File: DuckDB.lua

package info (click to toggle)
lua-dbi 0.7.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 448 kB
  • sloc: ansic: 3,946; sql: 291; makefile: 129
file content (38 lines) | stat: -rw-r--r-- 459 bytes parent folder | download
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
#!/usr/bin/env lua


return {

	connect = {
		name = 'duckdb-test'
	},

	encoding_test = {
		12435212,
		463769,
		8574678,
		-12435212,
		0,
		9998212,
		7653.25,
		7635236,
		0.000,
		-7653.25,
		1636.94783,
		true,
		false,
		nil,
		"string 1",
		"another_string",
		"really long string with some escapable chars: #&*%#;@'"
	},

	placeholder = '$1',

	have_last_insert_id = false,
	have_typecasts = false,
	have_booleans = true,
	have_rowcount = false

}