UNPKG

drill-client

Version:

This module serves as an interface for Apache Drill.

17 lines (12 loc) 715 B
[![npm package](https://nodei.co/npm/drill-client.png?downloads=true&downloadRank=true&stars=true)](https://www.npmjs.com/package/drill-client) [![Known Vulnerabilities](https://snyk.io/test/github/cgivre/drill-nodejs/badge.svg)](https://snyk.io/test/github/cgivre/drill-nodejs) # Apache Drill Client for NodeJS These are initial experiments to create a connector for NodeJS to query Apache Drill. ## Usage To query Drill, the `.execute()` or `.query()` functions ``` var client = new Drill.Client({hostname:'localhost', port:8047}); client.query('SELECT * FROM cp.`employee.json` LIMIT 10', function(error, data, columns){ console.log({data: data['rows'], columns: data['columns'], error: error}); }); ```