Update README.md Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/f8448c9f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/f8448c9f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/f8448c9f
Branch: refs/heads/ignite-7777 Commit: f8448c9f470190638fe1f46a4e39c0fa47c13995 Parents: 30de7ac Author: alexey-nbl <[email protected]> Authored: Mon May 14 10:35:33 2018 +0300 Committer: GitHub <[email protected]> Committed: Mon May 14 10:35:33 2018 +0300 ---------------------------------------------------------------------- modules/platforms/nodejs/examples/README.md | 32 ++++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/f8448c9f/modules/platforms/nodejs/examples/README.md ---------------------------------------------------------------------- diff --git a/modules/platforms/nodejs/examples/README.md b/modules/platforms/nodejs/examples/README.md index e6fc85b..f705fff 100644 --- a/modules/platforms/nodejs/examples/README.md +++ b/modules/platforms/nodejs/examples/README.md @@ -4,6 +4,20 @@ NodeJS Client for Apache Ignite contains fully workable examples to demonstrate ## Description ## +### Sql Example ### + +Source: [SqlExample.js](./SqlExample.js) + +This example shows primary APIs to use with Ignite as with an SQL database: +- connects to a node +- creates a cache, if it doesn't exist +- creates tables (CREATE TABLE) +- creates indices (CREATE INDEX) +- writes data of primitive types into the tables (INSERT INTO table) +- reads data from the tables (SELECT ...) +- deletes tables (DROP TABLE) +- destroys the cache + ### Cache Put Get Example ### Source: [CachePutGetExample.js](./CachePutGetExample.js) @@ -20,9 +34,9 @@ This example demonstrates basic Cache, Key-Value Queries and Scan Query operatio - ScanQuery - destroys the cache -### Sql Query Example ### +### Sql Query Entries Example ### -Source: [SqlQueryExample.js](./SqlQueryExample.js) +Source: [SqlQueryEntriesExample.js](./SqlQueryEntriesExample.js) This example demonstrates basic Cache, Key-Value Queries and SQL Query operations: - connects to a node @@ -31,20 +45,6 @@ This example demonstrates basic Cache, Key-Value Queries and SQL Query operation - reads data from the cache using SQL Query - destroys the cache -### Sql Data Processing Example ### - -Source: [SqlDataProcessingExample.js](./SqlDataProcessingExample.js) - -This example demonstrates basic SQL Fields Query operations: -- connects to a node -- creates a cache, if it doesn't exist -- creates tables (CREATE TABLE) -- creates indices (CREATE INDEX) -- writes data of primitive types into the tables (INSERT INTO table) -- reads data from the tables (SELECT ...) -- deletes tables (DROP TABLE) -- destroys the cache - ### Auth Tls Example ### Source: [AuthTlsExample.js](./AuthTlsExample.js)
