duckdb 0.6.2-dev1320.0 → 0.6.2-dev1332.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/duckdb.js
CHANGED
|
@@ -46,6 +46,10 @@ var OPEN_PRIVATECACHE = duckdb.OPEN_PRIVATECACHE;
|
|
|
46
46
|
// some wrappers for compatibilities sake
|
|
47
47
|
/**
|
|
48
48
|
* Main database interface
|
|
49
|
+
* @arg path - path to database file or :memory: for in-memory database
|
|
50
|
+
* @arg access_mode - access mode
|
|
51
|
+
* @arg config - the configuration object
|
|
52
|
+
* @arg callback - callback function
|
|
49
53
|
*/
|
|
50
54
|
var Database = duckdb.Database;
|
|
51
55
|
/**
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#ifndef DUCKDB_VERSION
|
|
2
|
-
#define DUCKDB_VERSION "0.6.2-
|
|
2
|
+
#define DUCKDB_VERSION "0.6.2-dev1332"
|
|
3
3
|
#endif
|
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
|
5
|
+
#define DUCKDB_SOURCE_ID "2fd5e0d925"
|
|
6
6
|
#endif
|
|
7
7
|
#include "duckdb/function/table/system_functions.hpp"
|
|
8
8
|
#include "duckdb/main/database.hpp"
|