Подскажите пожалуйста, где я ошибся?
private void insertRecord() {
String query = "INSERT INTO person VALUES ('"
+ tfId.getText() + ",'"
+ tfName.getText() + "',"
+ tfLastName.getText() + ",'"
+ tfYear.getText() + "',"
+ tfDok.getText() + ",'"
+ tfTel.getText() + "',"
+ tfEmail.getText() + ","
+ tfPrice.getText() + "')";
executeQuery(query);
showPerson();
}