Hello,
is it possibile to create a sub like this:
and call:
where the parameter "aLog" is false by default, and only if I want to set true, I need to call it:
is it possibile to create a sub like this:
B4X:
Public Sub Query (aSql As String, aLog As Boolean = False)
End Sub
B4X:
Query("SELECT * FROM ART")
B4X:
Query("SELECT * FROM ART", True)