This is just getting worse. I've tried writing a simple agent to update some data in MySQL using LCConnection.update. Trying to debug, Notes crashes. Turn Debug off and run agent Notes crashes.
Set lcConnection= New LCConnection("ODBC2")
lcConnection.server="xxxx_MySQL"
lcConnection.userID=ASPXUserName
lcConnection.password=ASPXPSW
lcConnection.metaData="xxx_xxx.xxxx"
lcConnection.mapByname=True
lcConnection.writeback=true
lcConnection.Connect
sel="SELECT * from xx_xx.xx where ClaimNo='00025004'"
'recCount=lcConnection.Select(keyFields, 1, fields)
recCount=lcConnection.Execute(sel, fields)
lcConnection.fetch fields,1,1
Set Field=fields.lookup("BusinessUnit")
field.value="Change this"
lcConnection.Update Fields <------------------------------------- Crashes here
lcConnection.Disconnect
If it's this flakey and buggy on the client how can I trust it on a server?