The New Language Reference (Local): 2016R1.1 / OS X 10.11.5
1. New Project,
2. Open the new Language Reference,
3. Cmd-Option-M
4. Type in the Method name: "SQLite_" (without the quotes)
5. Click in the Language Reference
enjoy the flickering, but this is not the end (but near) !
6. In the Language Reference, type SQLIte, click in SQLiteDatabase,
7. Choose the first code example,
8. Click in the Code Area,
9. Cmd-V, or Edit-Paste or even back to the Language Reference and drag and drop the code
NOTHING !
Tip: close the Language Reference window and you will be able to paste the code.
In the example:
[code]Dim sql As Text
sql = “DELETE FROM Team WHERE ID = ?!”
’ Pass in values after sql instead of doing string replacement
Try
Dim ID As Integer = 100 ’ Primary key for row
DB.SQLExecute(sql, ID) ’ Previously connected database
Catch e As SQLiteException
Dim err As Text = e.Reason
End Try[/code]
DB
from DB.SQLExecute
does not exists: I inderstand. But when I declare one, I get an error in ID
.
Also SQLiteException
is unknow in Catch e As SQLiteException
Then, I shutdown the computer and go to bed.