Per scrivere nel database SQL uso questa funzione:
codice:internal string RunQuery(string TheQuery) { MySQL_Conn.Execute(TheQuery, ???, ???); }
Il problema č che non so cosa ci vā al posto dei punti interrogativi ...![]()
Per scrivere nel database SQL uso questa funzione:
codice:internal string RunQuery(string TheQuery) { MySQL_Conn.Execute(TheQuery, ???, ???); }
Il problema č che non so cosa ci vā al posto dei punti interrogativi ...![]()
up!
Ho risolto il mio problema modificando la funzione in questo modo:
Non so se č il metodo migliore ma per ora funziona tutto correttamentecodice:internal void RunQuery(string TheQuery) { object obj = new object(); MySQL_Conn.Execute(TheQuery, out obj, 0); }