ODBC Driver for Microsoft Dynamics 365

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 GoalHeadingId, GoalHeadingId FROM GoalHeadings WHERE Name = ?",
        ["MyAccount"],
        (err, rows, moreRows) => {
        for (var i = 0; i < rows.length; i++) {
            console.log("GoalHeadingId = " + rows["GoalHeadingId"]);
            console.log("GoalHeadingId = " + rows["GoalHeadingId"]);
        }

        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 GoalHeadingId, GoalHeadingId FROM GoalHeadings WHERE Name = ?",
        (err, stmt) => {
        function printData(result, done) {
            result.fetch((err, row) => {
                if (row === null) done();

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

        stmt.executeQuery("MyAccount 1", (err, result) => {
            printData(result, () => {
                stmt.executeQuery("MyAccount 2", (err, result) => {
                    printData(result);
                });
            });
        });
    });
});

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