I finally got java talking to my DB server and working correctly.
Inserting data is no problem. however i can find anything on how to
loop through the results of a select query and send the results back to 
the client side
i have the following code looping through the results and printing it 
back to the system but i need
it to go to the client side

              queryresult = stmt.executeQuery("SELECT * " +
              "from test123 ORDER BY id");
               System.out.println("results are ");
              while(queryresult.next()){
                      int idnum= queryresult.getInt("id");
                      System.out.println( idnum);
              }

any ideas?

Donald



_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to