Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strSQL = "Update mytable SET myField = " & Chr(34) & "NEW" & Chr(34) & " WHERE myID = 1"
[COLOR=red]Debug.Print strSQL[/color]
myConn.Execute (strSQL)
Dim i2 As Integer
For i = 0 To 87
rs1.Fields(i).Value = PlyrArray(i)
i2 = i2 + 1
If i2 = 20 Then
rs1.Update
i2 = 0
End If
Next i
If i2 > 0 Then rs1.Update
for i= Lbound(PlyrArray) to UBound(PlyrArray)
sql="UPDATE YourTable Set SomeField='" PlyrArray(i) "'" _
& "Where SomeOtherField='" & SomeValue & "'"
'You can use the debug statement to see the complete sql string.
Debug.Print sql
conn.execute sql, , 129
next i