vickerps 0 Posted April 9, 2010 Can't seem to update an access database via autoit. IS it possible? I have search the topic and found a few posts giving example that it can be done however none of them work. Global Const $ProviderJET = 'Microsoft.Jet.OLEDB.4.0; ' Global $oAccessADO, $rsAccess, $AccessDB Dim $SQL $AccessDB = "c:\database\database.mdb" $SQL = "UPDATE OPERATOR SET USUAL_BRANCH = '111'" $oAccessADO = _adoAccessOpen($AccessDB) $oAccessADO.execute($SQL) Exit Func _adoAccessOpen($AccessDB) $oAccessADO = ObjCreate("ADODB.Connection") $oAccessADO.Provider = $ProviderJET $oAccessADO.Open($AccessDB) If @error Then MsgBox(0, "ERROR", "Cant open Access Database , handle = " & $oAccessADO) EndIf Return $oAccessADO EndFunc ;==>_adoAccessOpen When I run the code i get the following error E:\Customers\scoop\New AutoIt v3 Script.au3 (36) : ==> The requested action with this object has failed.: $oAccessADO.Open($AccessDB) $oAccessADO.Open($AccessDB)^ ERROR Share this post Link to post Share on other sites
water 2,388 Posted April 9, 2010 Install an error handler to get more information about the problem you have: $oMyError = ObjEvent("AutoIt.Error", "_Your_ErrorHandler") ; Install a custom error handler Func _Your_ErrorHandler() Local $bHexNumber = Hex($oMyError.number, 8) Local $sError = "COM Error Encountered in " & @ScriptName & @CRLF & _ "Scriptline = " & $oMyError.scriptline & @CRLF & _ "NumberHex = " & $bHexNumber & @CRLF & _ "Number = " & $oMyError.number & @CRLF & _ "WinDescription = " & StringStripWS($oMyError.WinDescription, 2) & @CRLF & _ "Description = " & StringStripWS($oMyError.description, 2) & @CRLF & _ "Source = " & $oMyError.Source & @CRLF & _ "HelpFile = " & $oMyError.HelpFile & @CRLF & _ "HelpContext = " & $oMyError.HelpContext & @CRLF & _ "LastDllError = " & $oMyError.LastDllError ConsoleWrite($sError & @CRLF) EndFunc My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites