0

我需要使用 javascript 和 HTML5 在我的 html 页面中显示以下 SQL 查询的结果。SQL 查询在 SQLite 浏览器中工作,但我不确定如何编写函数和相应的 HTML5 代码来调用函数以显示我的查询结果。SQL查询如下:

SELECT SUM(Orders.productQty * Products.productPrice) AS grandTotal FROM Orders JOIN Products ON Products.productID = Orders.productID

这会从我已经创建的 SQLite 数据库返回一个数字结果,但我不知道如何在我的网页上显示选择查询的结果。

我尝试使用以下函数来执行 sql 语句,但我不知道如何使用 HTML 显示它。

function calculateTotalDue() {
db.transaction(function (tx) {
    tx.executeSql('SELECT SUM(Orders.productQty * Products.productPrice) AS grandTotal FROM Orders JOIN Products ON Products.productID = Orders.productID', [], []);
});

}

有人可以告诉我如何在我的 html 页面中显示查询结果吗?

4

1 回答 1

1

你需要的是executeSql调用的第三个参数中的一个函数。像这样(如果您有多个结果,这是一个示例,但也适用于您的查询):

Javascript

function calculateTotalDue() {
  db.transaction(function (tx) {
      tx.executeSql('SELECT SUM(Orders.productQty * Products.productPrice) AS grandTotal FROM Orders JOIN Products ON Products.productID = Orders.productID', [], 
      function(){
        // Get return rows
        var data = result.rows;

        // Initialize variable to store your html
        var html = '';

        // loop thru results
        for (var i = 0; i < dataset.length; i++) {
          var row = data.item(i);

          // Add to html variable
          html += row.grandTotal;

          // Append that html somewhere
          // How todo this will vary depening on if you are using framworks or not
          // If just javascript use:
          // document.getElementById('results').innerHTML += html;


        }

      }
    );
  });
}
于 2013-01-04T20:40:05.930 回答