########################################################################## # ISNPRO patch for Macromedia Ultradev 1.0 # # # # mail : isnpro@isnrpo.com # # http : www.isnpro.com # # # # Version 1.0 beta for Win32 # # Tested on Win98 and WinNT4 # # 08/16/2000 # ########################################################################## !!! WARNING !!! You must have a JVM (Java Virtual Machine) installed on your computer to patch UltraDev 1.0. Look at the "JVM" § to get more informations. ########################################################################## # TECHNICAL INFORMATIONS # ########################################################################## This software is a patch for Macromedia Ultradev 1.0. It patchs the JDBC connection bug due to the PreparedStatement.prepareCall("SELECT...") method call. This method is not supported by MySQL. We removed the response.encodeRedirectURL("...") method which does not exist in many distributions of JServ module. BEFORE PATCH : PreparedStatement StatementRecordsetMySQL = ConnRecordsetMySQL.prepareCall("SELECT * FROM db"); StatementRecordsetMySQL.setQueryTimeout(0); ResultSet RecordsetMySQL = StatementRecordsetMySQL.executeQuery(); AFTER PATCH : String requestMySQL = "SELECT * FROM db"; Statement StatementRecordsetMySQL = ConnRecordsetMySQL.createStatement(); ResultSet RecordsetMySQL = StatementRecordsetMySQL.executeQuery(requestMySQL); ########################################################################## # JVM # ########################################################################## - A JVM called JView is included in Microsoft Internet Explorer 5 : http://www.microsoft.com/windows/ie/download/ie55.htm - You can use SUN JVM (or Runtime Environnement) : http://java.sun.com/j2se/ ########################################################################## # INSTALLATION # ########################################################################## 1 - Unjar UltraDevMySQLpatch.jar in a directory. Type "jar xf UltraDevMySQLpatch.jar" on the command line or use WinZip 2 - Launch setup.bat 3 - Click on "Patch UltraDev" 4 - Delete the directory where you unjared UltraDevMySQLpatch.jar