J
|
Jane 4/25/2008 |
Hi, 'update anothertablename strUpdate = "update AnotherTableName set Field1='" & dict("Field1") & "', Field2='" & dict("Field2") & "' where KeyField=" & dict("KeyField") dbConnection.Execute strUpdate 'remove fields from main SQL query dict.remove("Field1") dict.remove("Field2") |
Y
|
yairilan author 4/25/2008 |
Tx Jane, |
J
|
Jane 4/28/2008 |
Hi, |