Just for the fun of dragging up an old subject I get the same error using ADODB.Connection

Here's my code
 Code:
$cmd = 'Driver={MySQL ODBC 3.51 Driver};Option=16387;Server=127.0.0.1;uid=admin;pwd=pass1;'
$cn = CreateObject("ADODB.Connection")
$cn.Open($cmd)
? $cn.State
$cn.Execute("DROP DATABASE test")
$cn.Close
$cn = ""

If I use $=$cn.Execute("DROP DATABASE test")
The error is suppressed, however I feel that this error shouln't come up in the first place. (using kix 4.60)