我有一个不起作用的 SQL 查询:
String name = comboBoxgetSelectedItem().toString(); //Getting name from ComboBox
String age = "select age from actress where name = '" +namn+ "'"; //Get age from previous name
int TheAge = Integer.parseInt(age); //Want the age to be stored as int
这给出了以下错误:
线程“AWT-EventQueue-0”java.lang.NumberFormatException 中的异常:对于输入字符串:“从名称 = 'omg' 的女演员中选择年龄”
“omg”是我的 Combox 在第一行代码中选择的名称。