ODBC Driver for Google Data Catalog

Build 22.0.8462

Parameterized Statements

The following code example shows how to bind parameters to create parameterized statements.

Single-Use Statements

The query method accepts an additional array parameter for binding query parameters to values.

db.open("...", (err) => {
     db.query(
        "SELECT Type, DatasetName FROM Schemas WHERE ProjectId = ?",
        ["bigquery-public-data"],
        (err, rows, moreRows) => {
        for (var i = 0; i < rows.length; i++) {
            console.log("Type = " + rows["Type"]);
            console.log("DatasetName = " + rows["DatasetName"]);
        }

        if (!moreRows) {
            console.log("All rows have been processed");
        }
    });
});

Reusable Statements

The prepare method creates prepared ODBCStatement objects, which can be re-used across multiple execute and executeNonQuery calls.

When you execute an ODBCStatement, your callback receives an ODBCResult object which is used to fetch results. It can be used to fetch all results at once into an array, or it can fetch rows one at a time.

db.open("...", (err) => {
    db.prepare(
        "SELECT Type, DatasetName FROM Schemas WHERE ProjectId = ?",
        (err, stmt) => {
        function printData(result, done) {
            result.fetch((err, row) => {
                if (row === null) done();

                console.log("Type = " + row["Type"]);
                console.log("DatasetName = " + row["DatasetName"]);
                printData(result);
            }
        }

        stmt.executeQuery("bigquery-public-data 1", (err, result) => {
            printData(result, () => {
                stmt.executeQuery("bigquery-public-data 2", (err, result) => {
                    printData(result);
                });
            });
        });
    });
});

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462