Hello, it's me again. This time I have problem with MySQL plugin. Here is my code #include <MySQL.au3>
#include <Date.au3>
#include <MsgBoxConstants.au3>
$User=""
$Password=""
$Database=""
$Serwer=""
;I guess you guys know, why those variables are empty :)
$Column = _NowDate()
$BazaDanych = _MySQLConnect($User, $Password, $Database, $Serwer)
$Variable1 = InputBox("", "Enter a value: ")
$Query = "UPDATE autoit SET '" & $Column & "' = '" & $Variable1 & "'"
MsgBox(0, "MySQL Query Preview", $Query)
_Query($BazaDanych, $Query)
_MySQLEnd($BazaDanych)