Le mercredi 20 août 2008, João Luís a écrit : > sql = "INSERT INTO customer VALUES(name), ('" & TextBox1.Text & "')" I think It must be (at least with sqlite) : sql = "INSERT INTO customer (name) VALUES('" & TextBox1.Text & "')" cheers :)