mysql级别选择菜单的java返回变量

gywdnpxw  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(309)

我当前的数据库:
我想问你为什么它不工作,我有一个程序叫调用Map

SELECT map
FROM level
WHERE level.id = map_choice

在我的java代码中:我试图为“级别选择”设置一个选项菜单

else if (this.getView().getHome().getPanEdit().getButton_choice_2_home().getChoice() == 2) {

        int map_choice = (int) JOptionPane.showInputDialog(null, "Choose a Map!", "Lorann-MapSelector",
                JOptionPane.QUESTION_MESSAGE, null, LEVEL_LIST, LEVEL_LIST[0]);
      if (map_choice > 5) {
        System.exit(0);
    }
    /*Here is our switch with its choices*/
    switch (map_choice) {
    case 1:
    ControllerFacade.this.map_choice = 1;
    case 2:
    ControllerFacade.this.map_choice = 2;
    case 3:
    ControllerFacade.this.map_choice = 3;

    case 4:
    ControllerFacade.this.map_choice = 4;   

    case 5:
    ControllerFacade.this.map_choice = 5;   
        //Default, its an error
    default:
    ControllerFacade.this.map_choice = 4;   

    }

它现在应该读取map选项并将map\u选项设置为1,数据库应该识别出我请求获取id=1的map,只要它返回1
但结果是:
champ'map\u choice'未知in子句
这不正常?我仍然得到一个错误不知道如何和为什么?
我正在读取数据库代码:

package dao;

导入java.sql.*;
公务舱楼兰岛{

private static  String URL = "jdbc:mysql://localhost/lorann? autoReconnect=true&useSSL=false&useUnicode=true&useJDBC"
            + "CompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC";
private static String LOGIN = "root";
private static String PASSWORD = "";

public Connection connection;
public Statement statement;

public static String getMAPQuery(int map_choice) {
     return "call CALL_MAP(" + map_choice + ");";
}

public LorannDAO () {

this.connection = null;
this.statement = null; 

}

public boolean open () {

    System.out.println("opening a connection");

    try {
    Class.forName("com.mysql.cj.jdbc.Driver");
    this.connection = DriverManager.getConnection(LorannDAO.URL,LorannDAO.LOGIN, LorannDAO.PASSWORD);

    this.statement = this.connection.createStatement();

    } catch (final ClassNotFoundException e) {
    e.printStackTrace();
    return false;
    } catch (final SQLException e) {
    e.printStackTrace();
    return false;
    }
    return true;
}

public void close () {

    System.out.println("closing a connection");

    if ( connection != null )
    try 
    {
    connection.close();
    } 
    catch ( SQLException ignore ) 
    {
    }
}

public String getMAp (int map_choice) throws SQLException {

final ResultSet resultSet = this.executeQuery(getMAPQuery(map_choice));

String map = ""; 

if (resultSet.first()) {
    map = resultSet.getString("map");
}

 return map;

}

private ResultSet executeQuery (String query_p) throws SQLException{

    ResultSet retur = this.statement.executeQuery(query_p);

    return retur;

}
}

还有我试图从何处获取选项id的代码:

private int map_choice ;

/**
 * Instantiates a new model facade.
 * @throws IOException 
 */
public ModelFacade() throws IOException, SQLException 
{
    super();
    this.DAO = new LorannDAO();
    this.DAO.open();
    this.Map = new map(this.DAO.getMAp(map_choice));
    this.DAO.close();
}

public void connection () 
{
    this.DAO.open();
    try {
        this.Map.setMap(this.DAO.getMAp(map_choice));
    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    this.DAO.close();
}

public map getMap() 
{
    return Map;
}

public void setMap(map map)
{
    Map = map;
}

@Override
public int getMap_choice() 
{
    return map_choice;
}

@Override
public void setMap_choice(int map_choice) 
{
    this.map_choice = map_choice;
}
wf82jlnq

wf82jlnq1#

对于您的代码,我有两个建议:
你需要加上 break 在你的 switch case 块,否则程序将无法按预期工作。
不要将变量命名为 map_choice ,使用 mapChoice 相反

相关问题