Search:

Type: Posts; User: A4Andy

Search: Search took 0.08 seconds.

  1. Re: How to retrieve data from MYSQL database to JComboBox or to an array

    thanks it's already solved. I forgot the give the array a value
  2. Re: How to retrieve data from MYSQL database to JComboBox or to an array

    I change my while statement to


    while(rs.next())
    {
    array=rs.getString(2);
    }


    but I got an error Type mismatch cannot convert from String to String[]
  3. Re: How to retrieve data from MYSQL database to JComboBox or to an array

    transferring mysql data to array is my problem

    here is the code that I'm playing with



    public int i;
    public String [] array;
    PreparedStatement pstmt = con.prepareStatement("Select * from...
  4. How to retrieve data from MYSQL database to JComboBox or to an array

    the field type is text
    i really have no idea hope you guys can help me
Results 1 to 4 of 4