examples update

Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a7280b61
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a7280b61
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a7280b61

Branch: refs/heads/ignite-7777
Commit: a7280b61913142b007ae3b4e715f9319167a34f6
Parents: 8cb5aef
Author: ekaterina-nbl <[email protected]>
Authored: Mon May 14 13:18:30 2018 +0300
Committer: ekaterina-nbl <[email protected]>
Committed: Mon May 14 13:18:30 2018 +0300

----------------------------------------------------------------------
 .../nodejs/examples/SqlDataProcessingExample.js | 242 -------------------
 modules/platforms/nodejs/examples/SqlExample.js | 242 +++++++++++++++++++
 .../nodejs/examples/SqlQueryEntriesExample.js   | 136 +++++++++++
 .../nodejs/examples/SqlQueryExample.js          | 136 -----------
 4 files changed, 378 insertions(+), 378 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/a7280b61/modules/platforms/nodejs/examples/SqlDataProcessingExample.js
----------------------------------------------------------------------
diff --git a/modules/platforms/nodejs/examples/SqlDataProcessingExample.js 
b/modules/platforms/nodejs/examples/SqlDataProcessingExample.js
deleted file mode 100644
index f866f63..0000000
--- a/modules/platforms/nodejs/examples/SqlDataProcessingExample.js
+++ /dev/null
@@ -1,242 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-const Util = require('util');
-const IgniteClient = require('apache-ignite-client');
-const ObjectType = IgniteClient.ObjectType;
-const IgniteClientConfiguration = IgniteClient.IgniteClientConfiguration;
-const CacheConfiguration = IgniteClient.CacheConfiguration;
-const SqlFieldsQuery = IgniteClient.SqlFieldsQuery;
-const SqlQuery = IgniteClient.SqlQuery;
-
-const ENDPOINT = '127.0.0.1:10800';
-
-const COUNTRY_CACHE_NAME = 'Country';
-const CITY_CACHE_NAME = 'City';
-const COUNTRY_LANGUAGE_CACHE_NAME = 'CountryLng';
-const DUMMY_CACHE_NAME = 'SqlDataProcessing_Dummy';
-
-// 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
-class SqlDataProcessing {
-    async start() {
-        const igniteClient = new IgniteClient(this.onStateChanged.bind(this));
-        try {
-            await igniteClient.connect(new 
IgniteClientConfiguration(ENDPOINT));
-
-            const cache = await igniteClient.getOrCreateCache(
-                DUMMY_CACHE_NAME,
-                new CacheConfiguration().setSqlSchema('PUBLIC'));
-
-            await this.createDatabaseObjects(cache);
-            await this.insertData(cache);
-
-            const countryCache = igniteClient.getCache(COUNTRY_CACHE_NAME);
-            const cityCache = igniteClient.getCache(CITY_CACHE_NAME);
-
-            await this.getMostPopulatedCities(countryCache);
-            await this.getTopCitiesInThreeCountries(cityCache);
-            await this.getCityDetails(cityCache, 5);
-
-            await this.deleteDatabaseObjects(cache);
-            await igniteClient.destroyCache(DUMMY_CACHE_NAME);
-        }
-        catch (err) {
-            console.log(err.message);
-        }
-        finally {
-            igniteClient.disconnect();
-        }
-    }
-
-    async createDatabaseObjects(cache) {
-        const createCountryTable = `CREATE TABLE Country (
-            Code CHAR(3) PRIMARY KEY,
-            Name CHAR(52),
-            Continent CHAR(50),
-            Region CHAR(26),
-            SurfaceArea DECIMAL(10,2),
-            IndepYear SMALLINT(6),
-            Population INT(11),
-            LifeExpectancy DECIMAL(3,1),
-            GNP DECIMAL(10,2),
-            GNPOld DECIMAL(10,2),
-            LocalName CHAR(45),
-            GovernmentForm CHAR(45),
-            HeadOfState CHAR(60),
-            Capital INT(11),
-            Code2 CHAR(2)
-        ) WITH "template=partitioned, backups=1, 
CACHE_NAME=${COUNTRY_CACHE_NAME}"`;
-
-        const createCityTable = `CREATE TABLE City (
-            ID INT(11),
-            Name CHAR(35),
-            CountryCode CHAR(3),
-            District CHAR(20),
-            Population INT(11),
-            PRIMARY KEY (ID, CountryCode)
-        ) WITH "template=partitioned, backups=1, affinityKey=CountryCode, 
CACHE_NAME=${CITY_CACHE_NAME}"`;
-
-        const createCountryLanguageTable = `CREATE TABLE CountryLanguage (
-            CountryCode CHAR(3),
-            Language CHAR(30),
-            IsOfficial CHAR(2),
-            Percentage DECIMAL(4,1),
-            PRIMARY KEY (CountryCode, Language)
-        ) WITH "template=partitioned, backups=1, affinityKey=CountryCode, 
CACHE_NAME=${COUNTRY_LANGUAGE_CACHE_NAME}"`;
-
-        // create tables
-        (await cache.query(new SqlFieldsQuery(createCountryTable))).getAll();
-        (await cache.query(new SqlFieldsQuery(createCityTable))).getAll();
-        (await cache.query(new 
SqlFieldsQuery(createCountryLanguageTable))).getAll();
-
-        // create indices
-        (await cache.query(new SqlFieldsQuery(
-            'CREATE INDEX idx_country_code ON city (CountryCode)'))).getAll();
-        (await cache.query(new SqlFieldsQuery(
-            'CREATE INDEX idx_lang_country_code ON CountryLanguage 
(CountryCode)'))).getAll();
-
-        console.log('Database objects created');
-    }
-
-    async insertData(cache) {
-        const cities = [
-            ['New York', 'USA', 'New York', 8008278],
-            ['Los Angeles', 'USA', 'California', 3694820],
-            ['Chicago', 'USA', 'Illinois', 2896016],
-            ['Houston', 'USA', 'Texas', 1953631],
-            ['Philadelphia', 'USA', 'Pennsylvania', 1517550],
-            ['Moscow', 'RUS', 'Moscow (City)', 8389200],
-            ['St Petersburg', 'RUS', 'Pietari', 4694000],
-            ['Novosibirsk', 'RUS', 'Novosibirsk', 1398800],
-            ['Nizni Novgorod', 'RUS', 'Nizni Novgorod', 1357000],
-            ['Jekaterinburg', 'RUS', 'Sverdlovsk', 1266300],
-            ['Shanghai', 'CHN', 'Shanghai', 9696300],
-            ['Peking', 'CHN', 'Peking', 7472000],
-            ['Chongqing', 'CHN', 'Chongqing', 6351600],
-            ['Tianjin', 'CHN', 'Tianjin', 5286800],
-            ['Wuhan', 'CHN', 'Hubei', 4344600]
-        ];
-
-        const cityQuery = new SqlFieldsQuery(`INSERT INTO City(ID, Name, 
CountryCode, District, Population)
-            VALUES (?, ?, ?, ?, ?)`);
-
-        for (let i = 0; i < cities.length; i++) {
-            (await cache.query(cityQuery.setArgs(i, ...cities[i]))).getAll();
-        }
-
-        const countries = [
-            ['USA', 'United States', 'North America', 'North America',
-                9363520.00, 1776, 278357000, 77.1, 8510700.00, 8110900.00,
-                'United States', 'Federal Republic', 'George W. Bush', 3813, 
'US'],
-            ['RUS', 'Russian Federation', 'Europe', 'Eastern Europe',
-                17075400.00, 1991, 146934000, 67.2, 276608.00, 442989.00,
-                'Rossija', 'Federal Republic', 'Vladimir Putin', 3580, 'RU'],
-            ['CHN', 'China', 'Asia', 'Eastern Asia',
-                9572900.00, -1523, 1277558000, 71.4, 982268.00, 917719.00,
-                'Zhongquo', 'PeoplesRepublic', 'Jiang Zemin', 1891, 'CN']
-        ];
-
-        const countryQuery = new SqlFieldsQuery(`INSERT INTO Country(
-            Code, Name, Continent, Region, SurfaceArea,
-            IndepYear, Population, LifeExpectancy, GNP, GNPOld,
-            LocalName, GovernmentForm, HeadOfState, Capital, Code2)
-            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`);
-
-        for (let country of countries) {
-            (await cache.query(countryQuery.setArgs(...country))).getAll();
-        }
-
-        console.log('Data are inserted');
-    }
-
-    async getMostPopulatedCities(countryCache) {
-        const query = new SqlFieldsQuery(
-            'SELECT name, population FROM City ORDER BY population DESC LIMIT 
10');
-
-        const cursor = await countryCache.query(query);
-
-        console.log("10 Most Populated Cities:");
-
-        let row;
-        do {
-            row = await cursor.getValue();
-            console.log("    " + row[1] + " people live in " + row[0]);
-        } while (cursor.hasMore());
-    }
-
-    async getTopCitiesInThreeCountries(countryCache) {
-        const query = new SqlFieldsQuery(
-            `SELECT country.name, city.name, MAX(city.population) as max_pop 
FROM country
-            JOIN city ON city.countrycode = country.code
-            WHERE country.code IN ('USA','RUS','CHN')
-            GROUP BY country.name, city.name ORDER BY max_pop DESC LIMIT 3`);
-
-        const cursor = await countryCache.query(query);
-
-        console.log("3 Most Populated Cities in US, RUS and CHN:");
-
-        for (let row of await cursor.getAll()) {
-            console.log("    " + row[2] + " people live in " + row[1] + ", " + 
row[0]);
-        }
-    }
-
-    async getCityDetails(cityCache, cityId) {
-        const query = new SqlFieldsQuery('SELECT * FROM City WHERE id = ?').
-            setArgs(cityId);
-
-        const cursor = await cityCache.query(query);
-
-        const fieldNames = cursor.getFieldNames();
-
-        for (let city of await cursor.getAll()) {
-            console.log('City Info:');
-            for (let column of city) {
-                console.log("    " + column);
-            }
-        }
-    }
-
-    async deleteDatabaseObjects(cache) {
-        (await cache.query(new SqlFieldsQuery('DROP TABLE IF EXISTS 
Country'))).getAll();
-        (await cache.query(new SqlFieldsQuery('DROP TABLE IF EXISTS 
City'))).getAll();
-        (await cache.query(new SqlFieldsQuery('DROP TABLE IF EXISTS 
CountryLanguage'))).getAll();
-        console.log('Database objects dropped');
-    }
-
-    onStateChanged(state, reason) {
-        if (state === IgniteClient.STATE.CONNECTED) {
-            console.log('Client is started');
-        }
-        else if (state === IgniteClient.STATE.DISCONNECTED) {
-            console.log('Client is stopped');
-            if (reason) {
-                console.log(reason);
-            }
-        }
-    }
-}
-
-const sqlDataProcessing = new SqlDataProcessing();
-sqlDataProcessing.start();

http://git-wip-us.apache.org/repos/asf/ignite/blob/a7280b61/modules/platforms/nodejs/examples/SqlExample.js
----------------------------------------------------------------------
diff --git a/modules/platforms/nodejs/examples/SqlExample.js 
b/modules/platforms/nodejs/examples/SqlExample.js
new file mode 100644
index 0000000..3d47d55
--- /dev/null
+++ b/modules/platforms/nodejs/examples/SqlExample.js
@@ -0,0 +1,242 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+const Util = require('util');
+const IgniteClient = require('apache-ignite-client');
+const ObjectType = IgniteClient.ObjectType;
+const IgniteClientConfiguration = IgniteClient.IgniteClientConfiguration;
+const CacheConfiguration = IgniteClient.CacheConfiguration;
+const SqlFieldsQuery = IgniteClient.SqlFieldsQuery;
+const SqlQuery = IgniteClient.SqlQuery;
+
+const ENDPOINT = '127.0.0.1:10800';
+
+const COUNTRY_CACHE_NAME = 'Country';
+const CITY_CACHE_NAME = 'City';
+const COUNTRY_LANGUAGE_CACHE_NAME = 'CountryLng';
+const DUMMY_CACHE_NAME = 'SqlExample_Dummy';
+
+// 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
+class SqlExample {
+    async start() {
+        const igniteClient = new IgniteClient(this.onStateChanged.bind(this));
+        try {
+            await igniteClient.connect(new 
IgniteClientConfiguration(ENDPOINT));
+
+            const cache = await igniteClient.getOrCreateCache(
+                DUMMY_CACHE_NAME,
+                new CacheConfiguration().setSqlSchema('PUBLIC'));
+
+            await this.createDatabaseObjects(cache);
+            await this.insertData(cache);
+
+            const countryCache = igniteClient.getCache(COUNTRY_CACHE_NAME);
+            const cityCache = igniteClient.getCache(CITY_CACHE_NAME);
+
+            await this.getMostPopulatedCities(countryCache);
+            await this.getTopCitiesInThreeCountries(cityCache);
+            await this.getCityDetails(cityCache, 5);
+
+            await this.deleteDatabaseObjects(cache);
+            await igniteClient.destroyCache(DUMMY_CACHE_NAME);
+        }
+        catch (err) {
+            console.log(err.message);
+        }
+        finally {
+            igniteClient.disconnect();
+        }
+    }
+
+    async createDatabaseObjects(cache) {
+        const createCountryTable = `CREATE TABLE Country (
+            Code CHAR(3) PRIMARY KEY,
+            Name CHAR(52),
+            Continent CHAR(50),
+            Region CHAR(26),
+            SurfaceArea DECIMAL(10,2),
+            IndepYear SMALLINT(6),
+            Population INT(11),
+            LifeExpectancy DECIMAL(3,1),
+            GNP DECIMAL(10,2),
+            GNPOld DECIMAL(10,2),
+            LocalName CHAR(45),
+            GovernmentForm CHAR(45),
+            HeadOfState CHAR(60),
+            Capital INT(11),
+            Code2 CHAR(2)
+        ) WITH "template=partitioned, backups=1, 
CACHE_NAME=${COUNTRY_CACHE_NAME}"`;
+
+        const createCityTable = `CREATE TABLE City (
+            ID INT(11),
+            Name CHAR(35),
+            CountryCode CHAR(3),
+            District CHAR(20),
+            Population INT(11),
+            PRIMARY KEY (ID, CountryCode)
+        ) WITH "template=partitioned, backups=1, affinityKey=CountryCode, 
CACHE_NAME=${CITY_CACHE_NAME}"`;
+
+        const createCountryLanguageTable = `CREATE TABLE CountryLanguage (
+            CountryCode CHAR(3),
+            Language CHAR(30),
+            IsOfficial CHAR(2),
+            Percentage DECIMAL(4,1),
+            PRIMARY KEY (CountryCode, Language)
+        ) WITH "template=partitioned, backups=1, affinityKey=CountryCode, 
CACHE_NAME=${COUNTRY_LANGUAGE_CACHE_NAME}"`;
+
+        // create tables
+        (await cache.query(new SqlFieldsQuery(createCountryTable))).getAll();
+        (await cache.query(new SqlFieldsQuery(createCityTable))).getAll();
+        (await cache.query(new 
SqlFieldsQuery(createCountryLanguageTable))).getAll();
+
+        // create indices
+        (await cache.query(new SqlFieldsQuery(
+            'CREATE INDEX idx_country_code ON city (CountryCode)'))).getAll();
+        (await cache.query(new SqlFieldsQuery(
+            'CREATE INDEX idx_lang_country_code ON CountryLanguage 
(CountryCode)'))).getAll();
+
+        console.log('Database objects created');
+    }
+
+    async insertData(cache) {
+        const cities = [
+            ['New York', 'USA', 'New York', 8008278],
+            ['Los Angeles', 'USA', 'California', 3694820],
+            ['Chicago', 'USA', 'Illinois', 2896016],
+            ['Houston', 'USA', 'Texas', 1953631],
+            ['Philadelphia', 'USA', 'Pennsylvania', 1517550],
+            ['Moscow', 'RUS', 'Moscow (City)', 8389200],
+            ['St Petersburg', 'RUS', 'Pietari', 4694000],
+            ['Novosibirsk', 'RUS', 'Novosibirsk', 1398800],
+            ['Nizni Novgorod', 'RUS', 'Nizni Novgorod', 1357000],
+            ['Jekaterinburg', 'RUS', 'Sverdlovsk', 1266300],
+            ['Shanghai', 'CHN', 'Shanghai', 9696300],
+            ['Peking', 'CHN', 'Peking', 7472000],
+            ['Chongqing', 'CHN', 'Chongqing', 6351600],
+            ['Tianjin', 'CHN', 'Tianjin', 5286800],
+            ['Wuhan', 'CHN', 'Hubei', 4344600]
+        ];
+
+        const cityQuery = new SqlFieldsQuery(`INSERT INTO City(ID, Name, 
CountryCode, District, Population)
+            VALUES (?, ?, ?, ?, ?)`);
+
+        for (let i = 0; i < cities.length; i++) {
+            (await cache.query(cityQuery.setArgs(i, ...cities[i]))).getAll();
+        }
+
+        const countries = [
+            ['USA', 'United States', 'North America', 'North America',
+                9363520.00, 1776, 278357000, 77.1, 8510700.00, 8110900.00,
+                'United States', 'Federal Republic', 'George W. Bush', 3813, 
'US'],
+            ['RUS', 'Russian Federation', 'Europe', 'Eastern Europe',
+                17075400.00, 1991, 146934000, 67.2, 276608.00, 442989.00,
+                'Rossija', 'Federal Republic', 'Vladimir Putin', 3580, 'RU'],
+            ['CHN', 'China', 'Asia', 'Eastern Asia',
+                9572900.00, -1523, 1277558000, 71.4, 982268.00, 917719.00,
+                'Zhongquo', 'PeoplesRepublic', 'Jiang Zemin', 1891, 'CN']
+        ];
+
+        const countryQuery = new SqlFieldsQuery(`INSERT INTO Country(
+            Code, Name, Continent, Region, SurfaceArea,
+            IndepYear, Population, LifeExpectancy, GNP, GNPOld,
+            LocalName, GovernmentForm, HeadOfState, Capital, Code2)
+            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`);
+
+        for (let country of countries) {
+            (await cache.query(countryQuery.setArgs(...country))).getAll();
+        }
+
+        console.log('Data are inserted');
+    }
+
+    async getMostPopulatedCities(countryCache) {
+        const query = new SqlFieldsQuery(
+            'SELECT name, population FROM City ORDER BY population DESC LIMIT 
10');
+
+        const cursor = await countryCache.query(query);
+
+        console.log("10 Most Populated Cities:");
+
+        let row;
+        do {
+            row = await cursor.getValue();
+            console.log("    " + row[1] + " people live in " + row[0]);
+        } while (cursor.hasMore());
+    }
+
+    async getTopCitiesInThreeCountries(countryCache) {
+        const query = new SqlFieldsQuery(
+            `SELECT country.name, city.name, MAX(city.population) as max_pop 
FROM country
+            JOIN city ON city.countrycode = country.code
+            WHERE country.code IN ('USA','RUS','CHN')
+            GROUP BY country.name, city.name ORDER BY max_pop DESC LIMIT 3`);
+
+        const cursor = await countryCache.query(query);
+
+        console.log("3 Most Populated Cities in US, RUS and CHN:");
+
+        for (let row of await cursor.getAll()) {
+            console.log("    " + row[2] + " people live in " + row[1] + ", " + 
row[0]);
+        }
+    }
+
+    async getCityDetails(cityCache, cityId) {
+        const query = new SqlFieldsQuery('SELECT * FROM City WHERE id = ?').
+            setArgs(cityId);
+
+        const cursor = await cityCache.query(query);
+
+        const fieldNames = cursor.getFieldNames();
+
+        for (let city of await cursor.getAll()) {
+            console.log('City Info:');
+            for (let column of city) {
+                console.log("    " + column);
+            }
+        }
+    }
+
+    async deleteDatabaseObjects(cache) {
+        (await cache.query(new SqlFieldsQuery('DROP TABLE IF EXISTS 
Country'))).getAll();
+        (await cache.query(new SqlFieldsQuery('DROP TABLE IF EXISTS 
City'))).getAll();
+        (await cache.query(new SqlFieldsQuery('DROP TABLE IF EXISTS 
CountryLanguage'))).getAll();
+        console.log('Database objects dropped');
+    }
+
+    onStateChanged(state, reason) {
+        if (state === IgniteClient.STATE.CONNECTED) {
+            console.log('Client is started');
+        }
+        else if (state === IgniteClient.STATE.DISCONNECTED) {
+            console.log('Client is stopped');
+            if (reason) {
+                console.log(reason);
+            }
+        }
+    }
+}
+
+const sqlExample = new SqlExample();
+sqlExample.start();

http://git-wip-us.apache.org/repos/asf/ignite/blob/a7280b61/modules/platforms/nodejs/examples/SqlQueryEntriesExample.js
----------------------------------------------------------------------
diff --git a/modules/platforms/nodejs/examples/SqlQueryEntriesExample.js 
b/modules/platforms/nodejs/examples/SqlQueryEntriesExample.js
new file mode 100644
index 0000000..43eaad3
--- /dev/null
+++ b/modules/platforms/nodejs/examples/SqlQueryEntriesExample.js
@@ -0,0 +1,136 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+const Util = require('util');
+const IgniteClient = require('apache-ignite-client');
+const ObjectType = IgniteClient.ObjectType;
+const ComplexObjectType = IgniteClient.ComplexObjectType;
+const IgniteClientConfiguration = IgniteClient.IgniteClientConfiguration;
+const CacheConfiguration = IgniteClient.CacheConfiguration;
+const QueryEntity = IgniteClient.QueryEntity;
+const QueryField = IgniteClient.QueryField;
+const SqlFieldsQuery = IgniteClient.SqlFieldsQuery;
+const SqlQuery = IgniteClient.SqlQuery;
+
+const ENDPOINT = '127.0.0.1:10800';
+
+const PERSON_CACHE_NAME = 'SqlQueryEntriesExample_person';
+
+class Person {
+    constructor(firstName = null, lastName = null, salary = null) {
+        this.id = Person.generateId();
+        this.firstName = firstName;
+        this.lastName = lastName;
+        this.salary = salary;
+    }
+
+    static generateId() {
+        if (!Person.id) {
+            Person.id = 0;
+        }
+        const id = Person.id;
+        Person.id++;
+        return id;
+    }
+}
+
+// This example demonstrates basic Cache, Key-Value Queries and SQL Query 
operations:
+// - connects to a node
+// - creates a cache from CacheConfiguration, if it doesn't exist
+// - writes data of primitive and Complex Object types into the cache using 
Key-Value put operation
+// - reads data from the cache using SQL Query
+// - destroys the cache
+class SqlQueryEntriesExample {
+    constructor() {
+        this._cache = null;
+    }
+
+    async start() {
+        const igniteClient = new IgniteClient(this.onStateChanged.bind(this));
+        try {
+            await igniteClient.connect(new 
IgniteClientConfiguration(ENDPOINT));
+
+            const cacheCfg = new CacheConfiguration().
+                setQueryEntities(
+                    new QueryEntity().
+                        setValueTypeName('Person').
+                        setFields([
+                            new QueryField('id', 'java.lang.Integer'),
+                            new QueryField('firstName', 'java.lang.String'),
+                            new QueryField('lastName', 'java.lang.String'),
+                            new QueryField('salary', 'java.lang.Double')
+                        ]));
+            this._cache = (await 
igniteClient.getOrCreateCache(PERSON_CACHE_NAME, cacheCfg)).
+                setKeyType(ObjectType.PRIMITIVE_TYPE.INTEGER).
+                setValueType(new ComplexObjectType(new Person()).
+                    setFieldType('id', ObjectType.PRIMITIVE_TYPE.INTEGER));
+
+            await this.generateData();
+
+            const sqlCursor = await this._cache.query(
+                new SqlQuery('Person', 'salary > ? and salary <= ?').
+                    setArgs(900, 1600));
+
+            console.log('SqlQuery results (salary between 900 and 1600):');
+            let person;
+            do {
+                person = (await sqlCursor.getValue()).getValue();
+                console.log(Util.format('  name: %s %s, salary: %d',
+                    person.firstName, person.lastName, person.salary));
+            } while (sqlCursor.hasMore());
+
+            await igniteClient.destroyCache(PERSON_CACHE_NAME);
+        }
+        catch (err) {
+            console.log(err.message);
+        }
+        finally {
+            igniteClient.disconnect();
+        }
+    }
+
+    async generateData() {
+        const persons = [
+            ['John', 'Doe', 1000],
+            ['Jane', 'Roe', 2000],
+            ['Mary', 'Major', 1500],
+            ['Richard', 'Miles', 800]
+        ];
+
+        for (let data of persons) {
+            let person = new Person(...data);
+            await this._cache.put(person.id, person);
+        }
+
+        console.log('Data is generated');
+    }
+
+    onStateChanged(state, reason) {
+        if (state === IgniteClient.STATE.CONNECTED) {
+            console.log('Client is started');
+        }
+        else if (state === IgniteClient.STATE.DISCONNECTED) {
+            console.log('Client is stopped');
+            if (reason) {
+                console.log(reason);
+            }
+        }
+    }
+}
+
+const sqlQueryEntriesExample = new SqlQueryEntriesExample();
+sqlQueryEntriesExample.start();

http://git-wip-us.apache.org/repos/asf/ignite/blob/a7280b61/modules/platforms/nodejs/examples/SqlQueryExample.js
----------------------------------------------------------------------
diff --git a/modules/platforms/nodejs/examples/SqlQueryExample.js 
b/modules/platforms/nodejs/examples/SqlQueryExample.js
deleted file mode 100644
index 9554b5e..0000000
--- a/modules/platforms/nodejs/examples/SqlQueryExample.js
+++ /dev/null
@@ -1,136 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-const Util = require('util');
-const IgniteClient = require('apache-ignite-client');
-const ObjectType = IgniteClient.ObjectType;
-const ComplexObjectType = IgniteClient.ComplexObjectType;
-const IgniteClientConfiguration = IgniteClient.IgniteClientConfiguration;
-const CacheConfiguration = IgniteClient.CacheConfiguration;
-const QueryEntity = IgniteClient.QueryEntity;
-const QueryField = IgniteClient.QueryField;
-const SqlFieldsQuery = IgniteClient.SqlFieldsQuery;
-const SqlQuery = IgniteClient.SqlQuery;
-
-const ENDPOINT = '127.0.0.1:10800';
-
-const PERSON_CACHE_NAME = 'SqlQueryExample_person';
-
-class Person {
-    constructor(firstName = null, lastName = null, salary = null) {
-        this.id = Person.generateId();
-        this.firstName = firstName;
-        this.lastName = lastName;
-        this.salary = salary;
-    }
-
-    static generateId() {
-        if (!Person.id) {
-            Person.id = 0;
-        }
-        const id = Person.id;
-        Person.id++;
-        return id;
-    }
-}
-
-// This example demonstrates basic Cache, Key-Value Queries and SQL Query 
operations:
-// - connects to a node
-// - creates a cache from CacheConfiguration, if it doesn't exist
-// - writes data of primitive and Complex Object types into the cache using 
Key-Value put operation
-// - reads data from the cache using SQL Query
-// - destroys the cache
-class SqlQueryExample {
-    constructor() {
-        this._cache = null;
-    }
-
-    async start() {
-        const igniteClient = new IgniteClient(this.onStateChanged.bind(this));
-        try {
-            await igniteClient.connect(new 
IgniteClientConfiguration(ENDPOINT));
-
-            const cacheCfg = new CacheConfiguration().
-                setQueryEntities(
-                    new QueryEntity().
-                        setValueTypeName('Person').
-                        setFields([
-                            new QueryField('id', 'java.lang.Integer'),
-                            new QueryField('firstName', 'java.lang.String'),
-                            new QueryField('lastName', 'java.lang.String'),
-                            new QueryField('salary', 'java.lang.Double')
-                        ]));
-            this._cache = (await 
igniteClient.getOrCreateCache(PERSON_CACHE_NAME, cacheCfg)).
-                setKeyType(ObjectType.PRIMITIVE_TYPE.INTEGER).
-                setValueType(new ComplexObjectType(new Person()).
-                    setFieldType('id', ObjectType.PRIMITIVE_TYPE.INTEGER));
-
-            await this.generateData();
-
-            const sqlCursor = await this._cache.query(
-                new SqlQuery('Person', 'salary > ? and salary <= ?').
-                    setArgs(900, 1600));
-
-            console.log('SqlQuery results (salary between 900 and 1600):');
-            let person;
-            do {
-                person = (await sqlCursor.getValue()).getValue();
-                console.log(Util.format('  name: %s %s, salary: %d',
-                    person.firstName, person.lastName, person.salary));
-            } while (sqlCursor.hasMore());
-
-            await igniteClient.destroyCache(PERSON_CACHE_NAME);
-        }
-        catch (err) {
-            console.log(err.message);
-        }
-        finally {
-            igniteClient.disconnect();
-        }
-    }
-
-    async generateData() {
-        const persons = [
-            ['John', 'Doe', 1000],
-            ['Jane', 'Roe', 2000],
-            ['Mary', 'Major', 1500],
-            ['Richard', 'Miles', 800]
-        ];
-
-        for (let data of persons) {
-            let person = new Person(...data);
-            await this._cache.put(person.id, person);
-        }
-
-        console.log('Data is generated');
-    }
-
-    onStateChanged(state, reason) {
-        if (state === IgniteClient.STATE.CONNECTED) {
-            console.log('Client is started');
-        }
-        else if (state === IgniteClient.STATE.DISCONNECTED) {
-            console.log('Client is stopped');
-            if (reason) {
-                console.log(reason);
-            }
-        }
-    }
-}
-
-const sqlQueryExample = new SqlQueryExample();
-sqlQueryExample.start();

Reply via email to