I tried to read a file and write the data into database: The file is read to store into the string array, such like
String[] result = new String[numberofToken];
then i tried to:
Statement stm = conn.createStatement();
stm.executeUpdate("insert into login (firstname,lastname,pass, users ) values ('result[0]','result[1]','result[2]','result[3]')");
then it just store the "result[0]"..."result[3]" into the database, not the value of result[0]..result[3]. Can some expert help?