execute

LUA

execute

Parent Previous Next

execute

<adodatabase>:execute(sqlstring)

Esegue una stringa sql che non ritorna risultati. Ritorna vero (1) se ok, nil in caso di errore.

Esempio 100. Esempio <adodatabase>:execute()

db:execute(“delete * from tab1 where codice=2”)local ok = db:execute(“update tab1 set dim=3 where codice=2”)