ODBC Driver for Microsoft Bing

Build 22.0.8462

Querying Data

After Connecting, you can execute a SQL statement and retrieve the results.

SELECT Procedure

You can use the query method to execute the statement. It will split the query results into batches, and invoke a callback once for each batch. The rows are given to the callback as a list of objects, along with a flag indicating whether more rows are available.

db.open("...", (err) => {
    db.query("SELECT URL, Title FROM WebSearch WHERE SearchTerms = 'Microsoft'", (err, rows, moreRows) => {
        for (var i = 0; i < rows.length; i++) {
            var row = rows[i];
            console.log("URL = " + row["URL"]);
            console.log("Title = " + row["Title"]);
        }

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

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