I read lot of posts but im still stuck. Im trying to make connection from flex to java and from java to mysql. I managed to connect to java, but having error that class not found: com.mysql.jdbc.Driver. But i downloaded mysql.jar, included it added to library, and connection works when i testing it from eclipse scrapbook. Dont know what to do, i spend last couple days on this.
Class.forName("com.mysql.jdbc.Driver");
String username = "username";
String password = "password";
String database = "database"
String url = "jdbc:mysql://localhost/" + database;
connect = DriverManager.getConnection(url, username, password);
statement = connect.createStatement();
resultSet = statement.executeQuery(query);
SOLVED
Basically the solution was simple. Everybody keeps saying to put jar into lib folder, so i done it, but i wasnt realised that i have to put into my servers lib directory, not app lib directory and this miserable mistake cost so much. Anyway i hope this will help for some newbie like me.
In this particular situation im using red5, so i putted it into my red5 dist/lib directory and "surprisingly" its started to work.
Thanks for everybody.
newInstance()call is only necessary for the buggyorg.gjt.mm.mysql.Driver. See also stackoverflow.com/questions/5992126/loading-jdbc-driver Also, theClassNotFoundExceptionis thrown onforName()call, so thenewInstance()wouldn't ever be called and can therefore never "fix" it. – BalusC Sep 14 '11 at 0:51.classfile or a.jarfile? How exactly do you execute it? – BalusC Sep 14 '11 at 0:56