public void mostraUnidadesPorTipo() throws SQLException {
String numeroUnidades [] = new String [90];
String combosel = (String) jCtipounid.getSelectedItem();
ResultSet rs = null;
this.con = pacote_util.Conexao.getConexao();
stmt = con.createStatement();
try{
PreparedStatement pstm = this.con.prepareStatement(“SELECT NumeroUnidade FROM unidade WHERE TIPO_UNIDADE_NomeTU=”+ combosel);
rs = pstm.executeQuery();
        String nome = "";
        int i=0;
        while(rs.next()){
            nome = rs.getString("NumeroUnidade");
            numeroUnidades[i] = nome;
            i++;
        }
        jLunidExist.setListData(numeroUnidades);
   
   }catch(Exception e){
        e.printStackTrace();
    }
}
erro: om.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column ‘LUXO’ in ‘where clause’
tabela unidade pra mostrar q o campo TIPO_UNIDADE_NomeTU existe.
101	LUXO	1001	125.0	158.0	SIM
102	LUXO	1002	125.0	158.0	SIM
103	LUXO	1003	125.0	186.0	SIM
104	LUXO	1004	158.0	158.0	SIM
105	LUXO	1005	125.0	158.0	SIM
106	LUXO	1006	125.0	158.0	SIM
[/code][code]