Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@vertx/sql

vertx1Apache-2.03.8.3TypeScript support: included

Generated Eclipse Vert.x bindings for 'vertx-sql-common'

readme

npm (scoped) npm

Generated JavaScript bindings for Eclipse Vert.x.

Documentation

Usage

Import the required API/Enum/DataObject and profit!

// Base API
const Api = require('@vertx/sql');
// Base ENUMs
const Enums = require('@vertx/sql/enums');
// DataObject's
const Options = require('@vertx/sql/options');

// refer to the API docs for specific help...

// your code here!!!

Typescript

This package includes Typescript typedefinitions and your IDE should find then automatically.

When working in a project you can enable type hinting for the runtime as:

/// <definition types="es4x.d.ts" />
// @ts-check

// your TypeScript code here...