We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0ce15 commit 3fa77e3Copy full SHA for 3fa77e3
examples/bs-sqlite-db-example/autorun.brs
@@ -118,7 +118,6 @@ Function SelectRecords(selectSQL as string) as dynamic
118
records = []
119
while sqlResult = 102
120
resultsData = stmt.GetData()
121
- ' print resultsData
122
records.push(resultsData)
123
sqlResult = stmt.Run()
124
end while
@@ -138,7 +137,6 @@ Function DeleteRecord(deleteSQL as string) as boolean
138
137
deleteStmt = m.db.CreateStatement(deleteSQL)
139
if type(deleteStmt) = "roSqliteStatement" then
140
result = deleteStmt.Run()
141
- ' print "Deleted record, result: "; result
142
m.nodejs.PostJSMessage({ action: "delete", command: deleteSQL })
143
deleteStmt.Finalise()
144
return true
0 commit comments