shared items

Monday, March 29, 2010

javafx charts

http://java.sun.com/developer/technicalArticles/javafx/v1_2_charts/

VM setting in Eclipse

http://wiki.eclipse.org/Eclipse.iniSpecifying the JVM


One of the most recommended options to use is to specify a specific JVM for Eclipse to run on. Doing this ensures that you are absolutely certain which JVM Eclipse will run in and insulates you from system changes that can alter the "default" JVM for your system. Many a user has been tripped up because they thought they knew what JVM would be used by default, but they thought wrong. eclipse.ini lets you be CERTAIN.



The following examples of eclipse.ini demonstrate correct usage of the -vm option.



Note the format of the -vm option - it is important to be exact:



The -vm option and its value (the path) must be on separate lines.

The value must be the full absolute path to the Java executable, not just to the Java home directory.

The -vm option must occur before the -vmargs option, since everything after -vmargs is passed directly to the JVM.

Windows Example

-showsplash

org.eclipse.platform

--launcher.XXMaxPermSize

256m

-vm

C:\Java\JDK\1.5\bin\javaw.exe

-vmargs

-Xms40m

-Xmx512m

Source : http://wiki.eclipse.org/Eclipse.ini

SQLite jdbc

http://stackoverflow.com/questions/41233/java-and-sqlite

http://www.zentus.com/sqlitejdbc/