@elaraai/east-node-io 0.0.1-beta.8 → 1.0.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/CLA.md +1 -1
- package/CONTRIBUTING.md +3 -3
- package/LICENSE.md +31 -0
- package/README.md +56 -19
- package/dist/{compression → src/compression}/gzip.d.ts +1 -1
- package/dist/src/compression/gzip.d.ts.map +1 -0
- package/dist/{compression → src/compression}/gzip.js +3 -3
- package/dist/src/compression/gzip.js.map +1 -0
- package/dist/{compression → src/compression}/index.d.ts +16 -16
- package/dist/src/compression/index.d.ts.map +1 -0
- package/dist/src/compression/index.js.map +1 -0
- package/dist/{compression → src/compression}/tar.d.ts +2 -2
- package/dist/src/compression/tar.d.ts.map +1 -0
- package/dist/{compression → src/compression}/tar.js +7 -7
- package/dist/src/compression/tar.js.map +1 -0
- package/dist/{compression → src/compression}/types.d.ts +10 -10
- package/dist/src/compression/types.d.ts.map +1 -0
- package/dist/src/compression/types.js.map +1 -0
- package/dist/{compression → src/compression}/zip.d.ts +3 -3
- package/dist/src/compression/zip.d.ts.map +1 -0
- package/dist/{compression → src/compression}/zip.js +4 -4
- package/dist/src/compression/zip.js.map +1 -0
- package/dist/src/connection/index.d.ts.map +1 -0
- package/dist/{connection → src/connection}/index.js +2 -2
- package/dist/src/connection/index.js.map +1 -0
- package/dist/{format → src/format}/index.d.ts +77 -77
- package/dist/src/format/index.d.ts.map +1 -0
- package/dist/src/format/index.js.map +1 -0
- package/dist/{format → src/format}/types.d.ts +53 -53
- package/dist/src/format/types.d.ts.map +1 -0
- package/dist/src/format/types.js.map +1 -0
- package/dist/{format → src/format}/xlsx.d.ts +20 -20
- package/dist/src/format/xlsx.d.ts.map +1 -0
- package/dist/{format → src/format}/xlsx.js +6 -6
- package/dist/src/format/xlsx.js.map +1 -0
- package/dist/{format → src/format}/xml.d.ts +54 -54
- package/dist/src/format/xml.d.ts.map +1 -0
- package/dist/{format → src/format}/xml.js +14 -14
- package/dist/src/format/xml.js.map +1 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js.map +1 -0
- package/dist/{nosql → src/nosql}/index.d.ts +20 -20
- package/dist/src/nosql/index.d.ts.map +1 -0
- package/dist/src/nosql/index.js.map +1 -0
- package/dist/{nosql → src/nosql}/mongodb.d.ts +5 -5
- package/dist/src/nosql/mongodb.d.ts.map +1 -0
- package/dist/{nosql → src/nosql}/mongodb.js +8 -8
- package/dist/src/nosql/mongodb.js.map +1 -0
- package/dist/{nosql → src/nosql}/redis.d.ts +5 -5
- package/dist/src/nosql/redis.d.ts.map +1 -0
- package/dist/{nosql → src/nosql}/redis.js +6 -6
- package/dist/src/nosql/redis.js.map +1 -0
- package/dist/{nosql → src/nosql}/types.d.ts +10 -10
- package/dist/src/nosql/types.d.ts.map +1 -0
- package/dist/src/nosql/types.js.map +1 -0
- package/dist/src/platform.d.ts.map +1 -0
- package/dist/{platform.js → src/platform.js} +2 -0
- package/dist/src/platform.js.map +1 -0
- package/dist/src/sql/access.d.ts +243 -0
- package/dist/src/sql/access.d.ts.map +1 -0
- package/dist/src/sql/access.js +427 -0
- package/dist/src/sql/access.js.map +1 -0
- package/dist/src/sql/index.d.ts +1112 -0
- package/dist/src/sql/index.d.ts.map +1 -0
- package/dist/{sql → src/sql}/index.js +296 -4
- package/dist/src/sql/index.js.map +1 -0
- package/dist/{sql → src/sql}/mysql.d.ts +110 -32
- package/dist/src/sql/mysql.d.ts.map +1 -0
- package/dist/{sql → src/sql}/mysql.js +207 -6
- package/dist/src/sql/mysql.js.map +1 -0
- package/dist/{sql → src/sql}/postgres.d.ts +110 -32
- package/dist/src/sql/postgres.d.ts.map +1 -0
- package/dist/{sql → src/sql}/postgres.js +199 -6
- package/dist/src/sql/postgres.js.map +1 -0
- package/dist/{sql → src/sql}/sqlite.d.ts +108 -30
- package/dist/src/sql/sqlite.d.ts.map +1 -0
- package/dist/{sql → src/sql}/sqlite.js +209 -6
- package/dist/src/sql/sqlite.js.map +1 -0
- package/dist/src/sql/types.d.ts +269 -0
- package/dist/src/sql/types.d.ts.map +1 -0
- package/dist/{sql → src/sql}/types.js +65 -1
- package/dist/src/sql/types.js.map +1 -0
- package/dist/{storage → src/storage}/index.d.ts +63 -63
- package/dist/src/storage/index.d.ts.map +1 -0
- package/dist/{storage → src/storage}/index.js +1 -1
- package/dist/src/storage/index.js.map +1 -0
- package/dist/{storage → src/storage}/s3.d.ts +56 -49
- package/dist/src/storage/s3.d.ts.map +1 -0
- package/dist/{storage → src/storage}/s3.js +24 -15
- package/dist/src/storage/s3.js.map +1 -0
- package/dist/{storage → src/storage}/types.d.ts +18 -18
- package/dist/src/storage/types.d.ts.map +1 -0
- package/dist/src/storage/types.js.map +1 -0
- package/dist/{transfer → src/transfer}/ftp.d.ts +10 -10
- package/dist/src/transfer/ftp.d.ts.map +1 -0
- package/dist/{transfer → src/transfer}/ftp.js +6 -6
- package/dist/src/transfer/ftp.js.map +1 -0
- package/dist/{transfer → src/transfer}/index.d.ts +40 -40
- package/dist/src/transfer/index.d.ts.map +1 -0
- package/dist/src/transfer/index.js.map +1 -0
- package/dist/{transfer → src/transfer}/sftp.d.ts +10 -10
- package/dist/src/transfer/sftp.d.ts.map +1 -0
- package/dist/{transfer → src/transfer}/sftp.js +6 -6
- package/dist/src/transfer/sftp.js.map +1 -0
- package/dist/{transfer → src/transfer}/types.d.ts +15 -15
- package/dist/src/transfer/types.d.ts.map +1 -0
- package/dist/src/transfer/types.js.map +1 -0
- package/package.json +37 -53
- package/dist/compression/gzip.d.ts.map +0 -1
- package/dist/compression/gzip.js.map +0 -1
- package/dist/compression/index.d.ts.map +0 -1
- package/dist/compression/index.js.map +0 -1
- package/dist/compression/tar.d.ts.map +0 -1
- package/dist/compression/tar.js.map +0 -1
- package/dist/compression/types.d.ts.map +0 -1
- package/dist/compression/types.js.map +0 -1
- package/dist/compression/zip.d.ts.map +0 -1
- package/dist/compression/zip.js.map +0 -1
- package/dist/connection/index.d.ts.map +0 -1
- package/dist/connection/index.js.map +0 -1
- package/dist/format/index.d.ts.map +0 -1
- package/dist/format/index.js.map +0 -1
- package/dist/format/types.d.ts.map +0 -1
- package/dist/format/types.js.map +0 -1
- package/dist/format/xlsx.d.ts.map +0 -1
- package/dist/format/xlsx.js.map +0 -1
- package/dist/format/xml.d.ts.map +0 -1
- package/dist/format/xml.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/nosql/index.d.ts.map +0 -1
- package/dist/nosql/index.js.map +0 -1
- package/dist/nosql/mongodb.d.ts.map +0 -1
- package/dist/nosql/mongodb.js.map +0 -1
- package/dist/nosql/redis.d.ts.map +0 -1
- package/dist/nosql/redis.js.map +0 -1
- package/dist/nosql/types.d.ts.map +0 -1
- package/dist/nosql/types.js.map +0 -1
- package/dist/platform.d.ts.map +0 -1
- package/dist/platform.js.map +0 -1
- package/dist/sql/index.d.ts +0 -777
- package/dist/sql/index.d.ts.map +0 -1
- package/dist/sql/index.js.map +0 -1
- package/dist/sql/mysql.d.ts.map +0 -1
- package/dist/sql/mysql.js.map +0 -1
- package/dist/sql/postgres.d.ts.map +0 -1
- package/dist/sql/postgres.js.map +0 -1
- package/dist/sql/sqlite.d.ts.map +0 -1
- package/dist/sql/sqlite.js.map +0 -1
- package/dist/sql/types.d.ts +0 -205
- package/dist/sql/types.d.ts.map +0 -1
- package/dist/sql/types.js.map +0 -1
- package/dist/storage/index.d.ts.map +0 -1
- package/dist/storage/index.js.map +0 -1
- package/dist/storage/s3.d.ts.map +0 -1
- package/dist/storage/s3.js.map +0 -1
- package/dist/storage/types.d.ts.map +0 -1
- package/dist/storage/types.js.map +0 -1
- package/dist/transfer/ftp.d.ts.map +0 -1
- package/dist/transfer/ftp.js.map +0 -1
- package/dist/transfer/index.d.ts.map +0 -1
- package/dist/transfer/index.js.map +0 -1
- package/dist/transfer/sftp.d.ts.map +0 -1
- package/dist/transfer/sftp.js.map +0 -1
- package/dist/transfer/types.d.ts.map +0 -1
- package/dist/transfer/types.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- /package/dist/{compression → src/compression}/index.js +0 -0
- /package/dist/{compression → src/compression}/types.js +0 -0
- /package/dist/{connection → src/connection}/index.d.ts +0 -0
- /package/dist/{format → src/format}/index.js +0 -0
- /package/dist/{format → src/format}/types.js +0 -0
- /package/dist/{index.d.ts → src/index.d.ts} +0 -0
- /package/dist/{index.js → src/index.js} +0 -0
- /package/dist/{nosql → src/nosql}/index.js +0 -0
- /package/dist/{nosql → src/nosql}/types.js +0 -0
- /package/dist/{platform.d.ts → src/platform.d.ts} +0 -0
- /package/dist/{storage → src/storage}/types.js +0 -0
- /package/dist/{transfer → src/transfer}/index.js +0 -0
- /package/dist/{transfer → src/transfer}/types.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redis.js","sourceRoot":"","sources":["../../../src/nosql/redis.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,15 +17,15 @@ import { StructType, OptionType, StringType, IntegerType, RecursiveType } from "
|
|
|
17
17
|
*/
|
|
18
18
|
export declare const RedisConfigType: StructType<{
|
|
19
19
|
/** Redis server hostname or IP address */
|
|
20
|
-
host: StringType;
|
|
20
|
+
readonly host: StringType;
|
|
21
21
|
/** Redis server port (typically 6379) */
|
|
22
|
-
port: IntegerType;
|
|
22
|
+
readonly port: IntegerType;
|
|
23
23
|
/** Password for authentication (optional) */
|
|
24
|
-
password: OptionType<StringType>;
|
|
24
|
+
readonly password: OptionType<StringType>;
|
|
25
25
|
/** Database index (0-15, optional, defaults to 0) */
|
|
26
|
-
db: OptionType<IntegerType>;
|
|
26
|
+
readonly db: OptionType<IntegerType>;
|
|
27
27
|
/** Key prefix for all operations (optional) */
|
|
28
|
-
keyPrefix: OptionType<StringType>;
|
|
28
|
+
readonly keyPrefix: OptionType<StringType>;
|
|
29
29
|
}>;
|
|
30
30
|
/**
|
|
31
31
|
* MongoDB connection configuration.
|
|
@@ -34,11 +34,11 @@ export declare const RedisConfigType: StructType<{
|
|
|
34
34
|
*/
|
|
35
35
|
export declare const MongoConfigType: StructType<{
|
|
36
36
|
/** MongoDB connection URI */
|
|
37
|
-
uri: StringType;
|
|
37
|
+
readonly uri: StringType;
|
|
38
38
|
/** Database name */
|
|
39
|
-
database: StringType;
|
|
39
|
+
readonly database: StringType;
|
|
40
40
|
/** Collection name */
|
|
41
|
-
collection: StringType;
|
|
41
|
+
readonly collection: StringType;
|
|
42
42
|
}>;
|
|
43
43
|
/**
|
|
44
44
|
* BSON-compatible value type (recursive).
|
|
@@ -54,9 +54,9 @@ export declare const BsonValueType: ReturnType<typeof RecursiveType>;
|
|
|
54
54
|
*/
|
|
55
55
|
export declare const MongoFindOptionsType: StructType<{
|
|
56
56
|
/** Maximum number of documents to return (optional) */
|
|
57
|
-
limit: OptionType<IntegerType>;
|
|
57
|
+
readonly limit: OptionType<IntegerType>;
|
|
58
58
|
/** Number of documents to skip (optional) */
|
|
59
|
-
skip: OptionType<IntegerType>;
|
|
59
|
+
readonly skip: OptionType<IntegerType>;
|
|
60
60
|
}>;
|
|
61
61
|
/**
|
|
62
62
|
* Opaque connection handle type.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/nosql/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,OAAO,EACH,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,aAAa,EAOhB,MAAM,eAAe,CAAC;AAEvB;;;;GAIG;AACH,eAAO,MAAM,eAAe;IACxB,0CAA0C;;IAG1C,yCAAyC;;IAGzC,6CAA6C;;IAG7C,qDAAqD;;IAGrD,+CAA+C;;EAEjD,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,eAAe;IACxB,6BAA6B;;IAG7B,oBAAoB;;IAGpB,sBAAsB;;EAExB,CAAC;AAEH;;;;;GAKG;AACH,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,OAAO,aAAa,CAU1D,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB;IAC7B,uDAAuD;;IAGvD,6CAA6C;;EAE/C,CAAC;AAEH;;;;;;GAMG;AACH,QAAA,MAAM,oBAAoB,YAAa,CAAC;AAGxC,OAAO,EAAE,oBAAoB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/nosql/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,OAAO,EACH,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,aAAa,EACb,WAAW,EACX,SAAS,EACT,QAAQ,EACR,WAAW,EACX,SAAS,EACT,QAAQ,GACX,MAAM,eAAe,CAAC;AAEvB;;;;GAIG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,UAAU,CAAC;IACtC,0CAA0C;IAC1C,IAAI,EAAE,UAAU;IAEhB,yCAAyC;IACzC,IAAI,EAAE,WAAW;IAEjB,6CAA6C;IAC7C,QAAQ,EAAE,UAAU,CAAC,UAAU,CAAC;IAEhC,qDAAqD;IACrD,EAAE,EAAE,UAAU,CAAC,WAAW,CAAC;IAE3B,+CAA+C;IAC/C,SAAS,EAAE,UAAU,CAAC,UAAU,CAAC;CACpC,CAAC,CAAC;AAEH;;;;GAIG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,UAAU,CAAC;IACtC,6BAA6B;IAC7B,GAAG,EAAE,UAAU;IAEf,oBAAoB;IACpB,QAAQ,EAAE,UAAU;IAEpB,sBAAsB;IACtB,UAAU,EAAE,UAAU;CACzB,CAAC,CAAC;AAEH;;;;;GAKG;AACH,MAAM,CAAC,MAAM,aAAa,GAAqC,aAAa,CAAC,CAAC,IAAI,EAAE,EAAE,CAClF,WAAW,CAAC;IACR,MAAM,EAAE,UAAU;IAClB,OAAO,EAAE,WAAW;IACpB,KAAK,EAAE,SAAS;IAChB,OAAO,EAAE,WAAW;IACpB,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,SAAS,CAAC,IAAI,CAAC;IACtB,MAAM,EAAE,QAAQ,CAAC,UAAU,EAAE,IAAI,CAAC;CACrC,CAAC,CACL,CAAC;AAEF;;;;GAIG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,UAAU,CAAC;IAC3C,uDAAuD;IACvD,KAAK,EAAE,UAAU,CAAC,WAAW,CAAC;IAE9B,6CAA6C;IAC7C,IAAI,EAAE,UAAU,CAAC,WAAW,CAAC;CAChC,CAAC,CAAC;AAEH;;;;;;GAMG;AACH,MAAM,oBAAoB,GAAG,UAAU,CAAC;AAExC,mDAAmD;AACnD,OAAO,EAAE,oBAAoB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../../src/platform.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAoCH;;;;GAIG;AACH,QAAA,MAAM,cAAc,qDAcnB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
import { SqliteImpl } from "./sql/sqlite.js";
|
|
15
15
|
import { PostgresImpl } from "./sql/postgres.js";
|
|
16
16
|
import { MySqlImpl } from "./sql/mysql.js";
|
|
17
|
+
import { AccessImpl } from "./sql/access.js";
|
|
17
18
|
// Storage implementations
|
|
18
19
|
import { S3Impl } from "./storage/s3.js";
|
|
19
20
|
// Transfer implementations
|
|
@@ -37,6 +38,7 @@ const NodeIOPlatform = [
|
|
|
37
38
|
...SqliteImpl,
|
|
38
39
|
...PostgresImpl,
|
|
39
40
|
...MySqlImpl,
|
|
41
|
+
...AccessImpl,
|
|
40
42
|
...S3Impl,
|
|
41
43
|
...FtpImpl,
|
|
42
44
|
...SftpImpl,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"platform.js","sourceRoot":"","sources":["../../src/platform.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;GAOG;AAEH,sBAAsB;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C,0BAA0B;AAC1B,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,2BAA2B;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAE9C,wBAAwB;AACxB,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEjD,yBAAyB;AACzB,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,8BAA8B;AAC9B,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,cAAc,GAAG;IACnB,GAAG,UAAU;IACb,GAAG,YAAY;IACf,GAAG,SAAS;IACZ,GAAG,UAAU;IACb,GAAG,MAAM;IACT,GAAG,OAAO;IACV,GAAG,QAAQ;IACX,GAAG,SAAS;IACZ,GAAG,WAAW;IACd,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,OAAO;IACV,GAAG,OAAO;CACb,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2025 Elara AI Pty Ltd
|
|
3
|
+
* Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Microsoft Access platform functions for East Node IO.
|
|
7
|
+
*
|
|
8
|
+
* Provides read-only Access database operations for East programs, including
|
|
9
|
+
* opening databases, listing tables, and querying table data with user-defined
|
|
10
|
+
* return types.
|
|
11
|
+
*
|
|
12
|
+
* Uses the mdb-reader library which supports Access 97 through Access 2019,
|
|
13
|
+
* including encrypted databases.
|
|
14
|
+
*
|
|
15
|
+
* **Important**: This module is read-only. The mdb-reader library cannot create
|
|
16
|
+
* or modify Access databases.
|
|
17
|
+
*
|
|
18
|
+
* Supported formats:
|
|
19
|
+
* - `.mdb` - Access 97, 2000, 2002/2003
|
|
20
|
+
* - `.accdb` - Access 2007, 2010, 2013, 2016, 2019
|
|
21
|
+
*
|
|
22
|
+
* @packageDocumentation
|
|
23
|
+
*/
|
|
24
|
+
import { ArrayType, IntegerType, NullType, OptionType, StringType } from "@elaraai/east";
|
|
25
|
+
import type { PlatformFunction } from "@elaraai/east/internal";
|
|
26
|
+
/**
|
|
27
|
+
* Opens a Microsoft Access database file.
|
|
28
|
+
*
|
|
29
|
+
* Opens an Access database file (.mdb or .accdb) and returns an opaque handle
|
|
30
|
+
* for use in queries. Supports Access 97 through Access 2019, including
|
|
31
|
+
* encrypted databases.
|
|
32
|
+
*
|
|
33
|
+
* This is a platform function for the East language, enabling Access database
|
|
34
|
+
* read operations in East programs running on Node.js.
|
|
35
|
+
*
|
|
36
|
+
* @param config - Access connection configuration
|
|
37
|
+
* @returns Connection handle (opaque string)
|
|
38
|
+
*
|
|
39
|
+
* @throws {EastError} When connection fails due to:
|
|
40
|
+
* - Invalid file path (location: "access_open")
|
|
41
|
+
* - File not found (location: "access_open")
|
|
42
|
+
* - Invalid password for encrypted database (location: "access_open")
|
|
43
|
+
* - Unsupported database format (location: "access_open")
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* ```ts
|
|
47
|
+
* import { East, NullType, variant } from "@elaraai/east";
|
|
48
|
+
* import { SQL } from "@elaraai/east-node-io";
|
|
49
|
+
*
|
|
50
|
+
* const listTables = East.function([], NullType, ($) => {
|
|
51
|
+
* const config = $.let({
|
|
52
|
+
* path: "./database.mdb",
|
|
53
|
+
* password: variant('none', null),
|
|
54
|
+
* });
|
|
55
|
+
*
|
|
56
|
+
* const conn = $.let(SQL.Access.open(config));
|
|
57
|
+
* const tables = $.let(SQL.Access.tables(conn));
|
|
58
|
+
* $(SQL.Access.close(conn));
|
|
59
|
+
* $.return(null);
|
|
60
|
+
* });
|
|
61
|
+
*
|
|
62
|
+
* const compiled = East.compileAsync(listTables.toIR(), SQL.Access.Implementation);
|
|
63
|
+
* await compiled();
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @remarks
|
|
67
|
+
* - Access databases are read-only (mdb-reader does not support writes)
|
|
68
|
+
* - Supports encrypted databases with password option
|
|
69
|
+
* - Database file is read entirely into memory on open
|
|
70
|
+
*/
|
|
71
|
+
export declare const access_open: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
|
|
72
|
+
readonly path: StringType;
|
|
73
|
+
readonly password: OptionType<StringType>;
|
|
74
|
+
}>], StringType>;
|
|
75
|
+
/**
|
|
76
|
+
* Lists all table names in an Access database.
|
|
77
|
+
*
|
|
78
|
+
* Returns an array of table names available in the database.
|
|
79
|
+
* Only returns normal tables (not system or linked tables).
|
|
80
|
+
*
|
|
81
|
+
* @param handle - Connection handle from access_open()
|
|
82
|
+
* @returns Object containing array of table names
|
|
83
|
+
*
|
|
84
|
+
* @throws {EastError} When operation fails due to:
|
|
85
|
+
* - Invalid connection handle (location: "access_tables")
|
|
86
|
+
*
|
|
87
|
+
* @example
|
|
88
|
+
* ```ts
|
|
89
|
+
* import { East, NullType, variant } from "@elaraai/east";
|
|
90
|
+
* import { SQL } from "@elaraai/east-node-io";
|
|
91
|
+
*
|
|
92
|
+
* const showTables = East.function([], NullType, ($) => {
|
|
93
|
+
* const config = $.let({
|
|
94
|
+
* path: "./database.mdb",
|
|
95
|
+
* password: variant('none', null),
|
|
96
|
+
* });
|
|
97
|
+
*
|
|
98
|
+
* const conn = $.let(SQL.Access.open(config));
|
|
99
|
+
* const result = $.let(SQL.Access.tables(conn));
|
|
100
|
+
* // result.tables contains ['Table1', 'Table2', ...]
|
|
101
|
+
* $(SQL.Access.close(conn));
|
|
102
|
+
* $.return(null);
|
|
103
|
+
* });
|
|
104
|
+
*
|
|
105
|
+
* const compiled = East.compileAsync(showTables.toIR(), SQL.Access.Implementation);
|
|
106
|
+
* await compiled();
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
export declare const access_tables: import("@elaraai/east").AsyncPlatformDefinition<[StringType], import("@elaraai/east").StructType<{
|
|
110
|
+
readonly tables: ArrayType<StringType>;
|
|
111
|
+
}>>;
|
|
112
|
+
/**
|
|
113
|
+
* Queries data from an Access database table with a user-defined return type.
|
|
114
|
+
*
|
|
115
|
+
* Reads rows from a specified table with optional column selection and pagination.
|
|
116
|
+
* The return type is generic, allowing users to specify the expected row structure
|
|
117
|
+
* for type-safe access to query results.
|
|
118
|
+
*
|
|
119
|
+
* This is a generic platform function for the East language, enabling type-safe
|
|
120
|
+
* Access database read operations in East programs running on Node.js.
|
|
121
|
+
*
|
|
122
|
+
* @typeParam T - The expected row type for query results
|
|
123
|
+
* @param handle - Connection handle from access_open()
|
|
124
|
+
* @param options - Query options including table name, columns, offset, and limit
|
|
125
|
+
* @returns Array of rows matching the specified type T
|
|
126
|
+
*
|
|
127
|
+
* @throws {EastError} When query fails due to:
|
|
128
|
+
* - Invalid connection handle (location: "access_query")
|
|
129
|
+
* - Table not found (location: "access_query")
|
|
130
|
+
* - Column not found (location: "access_query")
|
|
131
|
+
*
|
|
132
|
+
* @example
|
|
133
|
+
* ```ts
|
|
134
|
+
* import { East, NullType, StructType, StringType, IntegerType, variant } from "@elaraai/east";
|
|
135
|
+
* import { SQL } from "@elaraai/east-node-io";
|
|
136
|
+
*
|
|
137
|
+
* // Define the expected row type
|
|
138
|
+
* const UserRowType = StructType({
|
|
139
|
+
* id: IntegerType,
|
|
140
|
+
* name: StringType,
|
|
141
|
+
* email: StringType,
|
|
142
|
+
* });
|
|
143
|
+
*
|
|
144
|
+
* const queryUsers = East.function([], NullType, ($) => {
|
|
145
|
+
* const config = $.let({
|
|
146
|
+
* path: "./database.mdb",
|
|
147
|
+
* password: variant('none', null),
|
|
148
|
+
* });
|
|
149
|
+
*
|
|
150
|
+
* const conn = $.let(SQL.Access.open(config));
|
|
151
|
+
* // Query with typed results - returns Array<UserRowType>
|
|
152
|
+
* const users = $.let(SQL.Access.query([UserRowType], conn, {
|
|
153
|
+
* table: "Users",
|
|
154
|
+
* columns: variant('some', ["id", "name", "email"]),
|
|
155
|
+
* rowOffset: variant('none', null),
|
|
156
|
+
* rowLimit: variant('some', 100n),
|
|
157
|
+
* }));
|
|
158
|
+
* // users is typed as Array<{ id: bigint, name: string, email: string }>
|
|
159
|
+
* $(SQL.Access.close(conn));
|
|
160
|
+
* $.return(null);
|
|
161
|
+
* });
|
|
162
|
+
*
|
|
163
|
+
* const compiled = East.compileAsync(queryUsers.toIR(), SQL.Access.Implementation);
|
|
164
|
+
* await compiled();
|
|
165
|
+
* ```
|
|
166
|
+
*
|
|
167
|
+
* @remarks
|
|
168
|
+
* - Table names are case-sensitive
|
|
169
|
+
* - The row type T should match the structure of the queried columns
|
|
170
|
+
* - All Access data types are mapped to appropriate East types
|
|
171
|
+
* - NULL values are preserved in the result
|
|
172
|
+
*/
|
|
173
|
+
export declare const access_query: import("@elaraai/east").AsyncGenericPlatformDefinition<readonly ["T"], readonly [StringType, import("@elaraai/east").StructType<{
|
|
174
|
+
readonly table: StringType;
|
|
175
|
+
readonly columns: OptionType<ArrayType<StringType>>;
|
|
176
|
+
readonly rowOffset: OptionType<IntegerType>;
|
|
177
|
+
readonly rowLimit: OptionType<IntegerType>;
|
|
178
|
+
}>], ArrayType<"T">>;
|
|
179
|
+
/**
|
|
180
|
+
* Closes an Access database connection.
|
|
181
|
+
*
|
|
182
|
+
* Closes the database connection and releases all resources.
|
|
183
|
+
* The handle becomes invalid after this operation.
|
|
184
|
+
*
|
|
185
|
+
* @param handle - Connection handle from access_open()
|
|
186
|
+
*
|
|
187
|
+
* @throws {EastError} When handle is invalid (location: "access_close")
|
|
188
|
+
*
|
|
189
|
+
* @example
|
|
190
|
+
* ```ts
|
|
191
|
+
* import { East, NullType, variant } from "@elaraai/east";
|
|
192
|
+
* import { SQL } from "@elaraai/east-node-io";
|
|
193
|
+
*
|
|
194
|
+
* const cleanup = East.function([], NullType, $ => {
|
|
195
|
+
* const config = $.let({
|
|
196
|
+
* path: "./database.mdb",
|
|
197
|
+
* password: variant('none', null),
|
|
198
|
+
* });
|
|
199
|
+
* const conn = $.let(SQL.Access.open(config));
|
|
200
|
+
* // ... do work ...
|
|
201
|
+
* $(SQL.Access.close(conn));
|
|
202
|
+
* return $.return(null);
|
|
203
|
+
* });
|
|
204
|
+
*
|
|
205
|
+
* const compiled = East.compileAsync(cleanup.toIR(), SQL.Access.Implementation);
|
|
206
|
+
* await compiled();
|
|
207
|
+
* ```
|
|
208
|
+
*/
|
|
209
|
+
export declare const access_close: import("@elaraai/east").AsyncPlatformDefinition<[StringType], NullType>;
|
|
210
|
+
/**
|
|
211
|
+
* Closes all Access database connections.
|
|
212
|
+
*
|
|
213
|
+
* Closes all active Access connections and releases all resources.
|
|
214
|
+
* Useful for test cleanup to ensure all connections are closed.
|
|
215
|
+
*
|
|
216
|
+
* @returns Null on success
|
|
217
|
+
*
|
|
218
|
+
* @example
|
|
219
|
+
* ```ts
|
|
220
|
+
* import { East, NullType } from "@elaraai/east";
|
|
221
|
+
* import { SQL } from "@elaraai/east-node-io";
|
|
222
|
+
*
|
|
223
|
+
* const cleanupAll = East.function([], NullType, $ => {
|
|
224
|
+
* // ... test code that may have left connections open ...
|
|
225
|
+
* $(SQL.Access.closeAll());
|
|
226
|
+
* return $.return(null);
|
|
227
|
+
* });
|
|
228
|
+
*
|
|
229
|
+
* const compiled = East.compileAsync(cleanupAll.toIR(), SQL.Access.Implementation);
|
|
230
|
+
* await compiled();
|
|
231
|
+
* ```
|
|
232
|
+
*
|
|
233
|
+
* @internal
|
|
234
|
+
*/
|
|
235
|
+
export declare const access_close_all: import("@elaraai/east").AsyncPlatformDefinition<[], NullType>;
|
|
236
|
+
/**
|
|
237
|
+
* Node.js implementation of Access platform functions.
|
|
238
|
+
*
|
|
239
|
+
* Provides the runtime implementations for Access database operations.
|
|
240
|
+
* Pass this to East.compileAsync() to enable Access functionality.
|
|
241
|
+
*/
|
|
242
|
+
export declare const AccessImpl: PlatformFunction[];
|
|
243
|
+
//# sourceMappingURL=access.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"access.d.ts","sourceRoot":"","sources":["../../../src/sql/access.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,EAAE,SAAS,EAAwD,WAAW,EAAoB,QAAQ,EAAE,UAAU,EAAE,UAAU,EAA4B,MAAM,eAAe,CAAC;AAE3L,OAAO,KAAK,EAAiB,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAY9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,eAAO,MAAM,WAAW;;;gBAA8E,CAAC;AAEvG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,eAAO,MAAM,aAAa;;GAAsF,CAAC;AAEjH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4DG;AACH,eAAO,MAAM,YAAY;;;;;oBAKxB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,eAAO,MAAM,YAAY,yEAAuE,CAAC;AAEjG;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,gBAAgB,+DAAuD,CAAC;AAErF;;;;;GAKG;AACH,eAAO,MAAM,UAAU,EAAE,gBAAgB,EAuNxC,CAAC"}
|