1.0.7 • Published 8 years ago

clickhouse_client v1.0.7

Weekly downloads
9
License
ISC
Repository
github
Last release
8 years ago
const ClickHouseClient = require('clickhouse_client');

let clickhouseClient = new ClickHouseClient({
	host: "localhost",
	port: 8123,
	dbname: "database"
});

clickhouseClient.find('SELECT * FROM table_name LIMIT 10', (err, data) => {
	if (err) {
		return console.log(err);
	}

	console.log({data});
});
1.0.7

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago