データベースから Float 値を取得し、それを Float 型の値に追加しようとすると、エラーが発生します。in '+': Array cant be coerced into Float (TypeError)
total = 0.0
db = SQLite3::Database.open "Checkout.sqlite"
for i in 0..@items.length
tempPrice = db.execute "SELECT price FROM Products WHERE product_code = ?", @items[i]
total = total + tempPrice
end