Jump to content

Recommended Posts

Posted

I would love to have some help or guidance 

I am able to Query from my database but I am not able to Update or insert etc because I lack the knowledge for it

 

this is my code for to retrieve some data from and works perfect

 

Dim $ueberschriften = ""
Dim $anzahl = 0
Dim $dsncount = 1
Global $DSN = "MTXXV5"
Global $Query = "Select * from VIEWS"



Func SSSQL($SSQuery) ;SuperSonicSQL 
    ConsoleWrite($SSQuery & @LF)
    $cmboVal = ""
    $adoCon = ObjCreate("ADODB.Connection")
    $adoCon.Open($DSN)
    $adoRs = ObjCreate("ADODB.Recordset")
    $adoSQL = $SSQuery
    $adoRs.CursorType = 2
    $adoRs.LockType = 3
    $adoRs.Open($adoSQL, $adoCon)
    With $adoRs
        Global $QueryAnswer = .GetRows
    EndWith
    Return $QueryAnswer
EndFunc   ;==>SSSQL

and this is my failed attempt, The Query is correct but I want to able to use it in autoit instead of have to manual update or insert into flamerobin
 

$SS_SQL_Insert_or_Update = "INSERT INTO DETECTION (DNAME,DTYPE,WINNAME,AREA,COLOR,MOUSE) VALUES ('PopUpTradeInviteYes        s                    ','SEARCH','XXX','175,240,550,240,65,228,82,234','5062478','0') "



Func SSSQLIU($SS_SQL_Insert_or_Update) ;SuperSonicSQL :P
    $cmboVal = ""
    $adoCon = ObjCreate("ADODB.Connection")
    $adoCon.Open($DSN)
    $adoRs = ObjCreate("ADODB.Record")
    $adoSQL =$SS_SQL_Insert_or_Update
;~     $adoRs.CursorType = 2
    $adoRs.LockType = 4
    $adoRs.Open($adoSQL, $adoCon)
;~     With $adoRs
;~         Global $QueryAnswer = .GetRows
;~     EndWith
;~     Return $QueryAnswer
EndFunc   ;==>SSSQL

I am at a total loss and I am just trying this at random but I am also going to sleep now

I would love to have some minor examples

"C:\_CC_V10_DetectionTAB.au3" (174) : ==> The requested action with this object has failed.:
$adoRs.Open($adoSQL, $adoCon)
$adoRs^ ERROR

Posted

This seems to be the solution (at least for me)  any extra info or feedback is appreciated )

 

Func SSSQLIU($SS_SQL_Insert_or_Update) ;SuperSonicSQL :P
    $cmboVal = ""
    $adoCon = ObjCreate("ADODB.Connection")
    $adoCon.Open($DSN) ;Data Source Name
    $adoRs = ObjCreate("ADODB.Recordset")
    $adoSQL = $SS_SQL_Insert_or_Update
    $adoRs.CursorType = 1
    $adoRs.LockType = 3
;~  $adoRs.Open($adoCon)
    $adoCon.Execute($adoSQL)
    $adoCon.Close
EndFunc   ;==>SSSQLIU

 

Posted (edited)
Func SSSQLIU($SS_SQL_Insert_or_Update) ;SuperSonicSQL :P
    $adoCon = ObjCreate("ADODB.Connection")
    $adoCon.Open($DSN) ;Data Source Name
    $adoCon.Execute($SS_SQL_Insert_or_Update)
    $adoCon.Close
EndFunc   ;==>SSSQLIU

You don't need a recordset object here, this is a command which doesn't produce results.

Also, you shouldn't open and close the connection for every SQL operation. Open the connection at program start, close it at program termination.

Edited by jchd
  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted

I encourage you to use:

 

 

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...