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

时间:2018-06-03 23:24:15

标签: java mysql jdbc dao getter-setter

MY CURRENT DATABASE looking

我想问你为什么不行 我有一个名为CALL_MAP

的程序
SELECT map
FROM level
WHERE level.id = map_choice

在我的java代码中:我正在尝试为" Level level"

选择菜单
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_choice设置为1,数据库应该认识到我要求获取ID = 1的地图,只要它将返回1

但结果是:

  

Champ' map_choice' 未知的条款

这不正常吗?我仍然得到错误,不知道如何以及为什么?

我的阅读数据库代码:

package dao;

import java.sql。*;

公共课LorannDAO {

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;
}

1 个答案:

答案 0 :(得分:0)

对于您的代码,我有两个建议:

  1. 您需要在break区块中添加switch case,否则您的计划将无法正常运作。

  2. 请勿使用map_choice代替mapChoice为您的变量命名