vbs fil virker ikke
HejEr der nogen som kan se hvorfor denne vbs fil ikke vil køres med Scheduled Tasks?
Option Explicit
Set Conn = Server.CreateObject("ADODB.Connection")
StrConnection = "driver=MySQL;server=localhost;uid=root;pwd=mogens;database=spotpeopledk"
Conn.Open StrConnection
SQL = "SELECT * FROM profiler LEFT JOIN profilbilleder ON profiler.id = profilbilleder.profilerID WHERE profilbilleder.godkendt = '1' ORDER BY RAND()"
Set RS = Conn.Execute(SQL)
SQLupdate "UPDATE timesprofil SET profilerID = "& RS("profiler.id") &""
Conn.Execute(SQLupdate)
På forhånd tak!
// Rene