Java version names in Sun's bug database

In http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6525150 it says Release Fixed 7(b14), 6u2(b01) (Bug ID:2147561)

What does 6u2 mean? (Am I right in assuming it as 1.6.0_02 ?)


Asked by: Aida880 | Posted: 21-01-2022






Answer 1

yes, release 6 update 2. Also, (b01) is build 01

Answered by: Adelaide848 | Posted: 22-02-2022



Answer 2

Yes. You are right. :) u2 -> Update 2

Answered by: Adelaide474 | Posted: 22-02-2022



Similar questions

java - Unable to query local version of Linked Movie Database

I am trying to query a local version of Linked Movie Database using SPARQL. The file is in N-Triples format and its size is approximately 450mb. I am using servlets for implementation. Now when I pass the query, it takes about more than five minutes for the servlet to process it and at the end I get the following exception: type Exception report message descripti...


java - How to use Jena TDB to store local version of Linked Movie Database

I have a local version of LinkedMDB that is in N-Triples format and want to query it. Now, I want to use Jena TDB, which can store the data that can be used for querying later. I checked the documentation for TDB Java API, but was unable to load the N-Triples file and then query with SPARQL. I've used the following code:


java - Database Version SQLite Android

I am learning Android. I have one Quote application with SQLite database. I need to give Database version to this application so Whenever I update application, users database also can be get updated. What changes I need to made in this ? My database Helper/ Handler Class is like below. public class DataBaseHandler extends SQLiteOpenHelper { private static String DB_PATH; private static Strin...


java - Getting version of Sqlite database

I am using the sqliteJDBC library (SqliteDriver) in my Java desktop application to hook to my sqlite database. Is there a way I can get the version of the database? This way I can know if I need to add missing tables based on the current database version Thank you PS: I am coming from android world where you can get the current version and "upgrade database". So I am assuming the database version i...


java - Where can I find database scripts for the version 2.3.0 version? Unable to find it under the 2.3.0 kit

I am new to quartz. I am unable to find the database scripts under docs folder in quartz-2.3.0-distribution.tar.gz . There are only images under docs folder. But it is available under docs folder in quartz-2.2.3-distribution.tar.gz version. Where can I find database scripts for 2.3.0 version? Should the same be used as in 2.2.3 version? Also where can I find the migration database scripts. Kindly help.The official lin...


java - Should my room database start at version 0?

I have realised that my database migration strategy was incorrect and have rewritten it. At the moment it looks like this: @Database(entities = {SaveData.class, Achievement.class}, version = 2, exportSchema = false) @TypeConverters(MapConverters.class) public abstract class AppDatabase extends RoomDatabase { public abstract SaveDataDAO saveDataDAO(); public abstract AchievementDAO achievementDAO()...


java - Ways to save enums in database

What is the best way to save enums into a database? I know Java provides name() and valueOf() methods to convert enum values into a String and back. But are there any other (flexible) options to store these values? Is there a smart way to make enums into unique numbers (ordinal() is not safe to use)? Update Thanks for all awesome and fast answers! It was ...


java - How do I auto load a database jar in Groovy without using the -cp switch?

I want to simplify my execution of a Groovy script that makes calls to an Oracle database. How do I add the ojdbc jar to the default classpath so that I can run: groovy RunScript.groovy instead of: groovy -cp ojdbc5.jar RunScript.groovy


Java Database Poller?

Are there any JAVA API's for polling a database. Should be able to a) Be able to get all the data from a table to start with. b) Poll it every configurable minutes.


java - Connect to database using jsf

How do I connect to the database(MYSQL) in connection bean using JSF to retrieve its contents. Also please let me know how do I configure the web.xml file?


java - Connect to a Read Only database

While trying to connect to a database that's set to read only, the connection cannot be made. I get the following error: Cannot create PoolableConnectionFactory (Io exception: The Network Adapter could not establish the connection) The application needs to run in read-write mode and then automatically handle the switch to read-only by only checking the isReadOnly property of the connecti...


Adding Java Objects to database

For a university assignment I have been assigned I have a Prize object which contains either text, image, or video content. I would like to persist this information into a BLOB field within an Apache Derby database (which will be running on a low powered PDA). How can I add this data to the database? Thanks in advance.


java - Apache Derby - Check Database Already Created?

Using Apache Derby with Java (J2ME, but I don't think that makes a difference) is there any way of checking if a database already exists and contains a table?


database - Handling abnormal Java program exits

Suppose I have a Java application that opens a database connection. Normally I would add a connection.close() in a finally block, but this block wouldn't be executed in the case of a kill operation, or any other abnormal termination, would it? Are there any other precautions that I, as a programmer, can make in order to close the connection properly before the application exits?


mysql - Adding Image to a database in Java

I am trying to add an image to a BLOB field in a mysql database. The image is going to be less then 100kb in size. However I am running into problems and was wondering what would be a better way to add this data to the database? com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'Data' at row 1 PreparedStatement addImage = conn.prepareStatement("INSERT INTO Images (Width, ...


java - Using an enum as a mapkey results in a RAW in the database

I'm trying to use an enum as a mapkey for a map in Hibernate, but Hibernate stores my enum as a RAW: I have this enum: public enum AccountType implements Serializable { CASH, CREDIT_CARD, GIRO, INVOICE, OTHER; } Which I'm trying to use as a key in a map: @CollectionOfElements @MapKey(columns = @Column(name="ACC_TYPE"), targetElement = Account...






Still can't find your answer? Check out these amazing Java communities for help...



Java Reddit Community | Java Help Reddit Community | Dev.to Java Community | Java Discord | Java Programmers (Facebook) | Java developers (Facebook)



top