diff --git a/README.md b/README.md index 576c3d02..2d65ded7 100644 --- a/README.md +++ b/README.md @@ -274,6 +274,7 @@ Follow the links in the table below: | [Golang](https://github.com/cozodb/cozo-lib-go) | Linux (x86_64, ARM64), Mac (ARM64, x86_64), Windows (x86_64) | MQR | | [C/C++/language with C FFI](./cozo-lib-c) | Linux (x86_64, ARM64), Mac (ARM64, x86_64), Windows (x86_64) | MQR | | [Standalone HTTP server](./cozo-bin) | Linux (x86_64, ARM64), Mac (ARM64, x86_64), Windows (x86_64) | MQRST | +| [Lisp](https://github.com/pegesund/cozodb-lisp) | Linux (x86_64 so far) | MR | For the storage column: diff --git a/cozo-lib-c/example.c b/cozo-lib-c/example.c index 7c11c7f8..2e0c21ea 100644 --- a/cozo-lib-c/example.c +++ b/cozo-lib-c/example.c @@ -12,7 +12,7 @@ void run_query(int32_t db_id, const char *query) { const char *empty_params = "{}"; char *res; - res = cozo_run_query(db_id, query, empty_params); + res = cozo_run_query(db_id, query, empty_params, false); printf("%s\n", res); cozo_free_str(res); } @@ -32,4 +32,4 @@ int main() { cozo_close_db(db_id); return 0; -} \ No newline at end of file +} diff --git a/cozo-lib-nodejs/README.md b/cozo-lib-nodejs/README.md index 92bcadd7..0909743c 100644 --- a/cozo-lib-nodejs/README.md +++ b/cozo-lib-nodejs/README.md @@ -24,14 +24,14 @@ const {CozoDb} = require('cozo-node') const db = new CozoDb() function printQuery(query, params) { - db.run(query, params) + return db.run(query, params) .then(data => console.log(data)) .catch(err => console.error(err.display || err.message)) } -printQuery("?[] <- [['hello', 'world!']]") -printQuery("?[] <- [['hello', 'world', $name]]", {"name": "JavaScript"}) -printQuery("?[a] <- [[1, 2]]") +await printQuery("?[] <- [['hello', 'world!']]") +await printQuery("?[] <- [['hello', 'world', $name]]", {"name": "JavaScript"}) +await printQuery("?[a] <- [[1, 2]]") ``` ### Basic API @@ -136,4 +136,4 @@ If you did everything correctly, you should get the hello world message printed node example.js ``` -under this directory. \ No newline at end of file +under this directory. diff --git a/signatures/version1/cla.json b/signatures/version1/cla.json index fb7760e7..c1aa8832 100644 --- a/signatures/version1/cla.json +++ b/signatures/version1/cla.json @@ -31,6 +31,30 @@ "created_at": "2023-05-11T17:33:21Z", "repoId": 551374215, "pullRequestNo": 107 + }, + { + "name": "turnerdev", + "id": 48462986, + "comment_id": 1633419301, + "created_at": "2023-07-13T01:52:22Z", + "repoId": 551374215, + "pullRequestNo": 145 + }, + { + "name": "pegesund", + "id": 198916, + "comment_id": 1642413475, + "created_at": "2023-07-19T16:39:15Z", + "repoId": 551374215, + "pullRequestNo": 151 + }, + { + "name": "CrowdHailer", + "id": 5862302, + "comment_id": 1656326030, + "created_at": "2023-07-28T20:55:41Z", + "repoId": 551374215, + "pullRequestNo": 164 } ] } \ No newline at end of file