Guest User

jus a small script

a guest
May 3rd, 2019
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.43 KB | None | 0 0
  1. #include <sqlite.au3>
  2.  
  3. Global $vinfur_error = _errorreporter
  4. Global $aresult, $rows, $columns
  5. _SQLite_Startup("", False, 0, $vinfur_error)
  6.  
  7.  
  8. _SQLite_Open(@ScriptDir & "\alpha.db")
  9. _SQLite_GetTable2d(-1, "select * from Error", $aresult, $rows, $columns) ;there is no error Table as such which will lead to error
  10.  
  11. sleep(5000)
  12. Func _errorreporter($stest)
  13.  
  14.  
  15.     TrayTip("", $stest, 30)
  16.     Sleep(50000)
  17. EndFunc   ;==>_errorreporter
Add Comment
Please, Sign In to add comment