Could anybody please give an example how to update record using MySQL UDF?
Looking around and seems cant find anything about this![:(]()
This code seems so wrong because after While NOT .EOF it does nothing :-D
Thanks in Advance
Looking around and seems cant find anything about this
![:(](http://aut1.autoit-cdn.com/forum/public/style_emoticons/default/sad.png)
Local $SQLCode, $TableContents = "" $SQLInstance = _MySQLConnect($sUserName,$sPassword,$sDatabase,$sServerName) $SQLCode = "UPDATE mytable SET Price='430' WHERE ProductID='BEX01'" $TableContents = _Query ($SQLInstance, $SQLCode) With $TableContents While NOT .EOF .MoveNext WEnd EndWith _MySQLEnd($SQLInstance)
This code seems so wrong because after While NOT .EOF it does nothing :-D
Thanks in Advance
![:)](http://aut1.autoit-cdn.com/forum/public/style_emoticons/default/smile.png)