| Author |
Data Insert Problem
|
Ekrem Altintas
Greenhorn
Joined: Dec 20, 2005
Posts: 14
|
|
Connection conn = null; try { ... cumle = conn.createStatement(); ... cumle.excuteUpdate("INSERT INTO kelimeler(kelime,sayi) VALUES('"+deger[0]+"',1)"); ... } I wrote this statement, I'm taking; cannot resolve symbol symbol : method executeUpdate (java.lang.String) location: interface java.sql.Statement error.I don't know what is the problem.
|
 |
Ekrem Altintas
Greenhorn
Joined: Dec 20, 2005
Posts: 14
|
|
I forgot the other value. String[] deger = new String[50];
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
Just like you were told in your cross-post in the Sun forum: you used "excute" instead of "execute".
|
 |
 |
|
|
subject: Data Insert Problem
|
|
|