JDBC is an API for Java and it defines how your Java application make connection to the database in order to query or update the data.
In the following example, it shows you how to get a value from the database using the JDBC API. To make use of the API, you have to download the JDBC driver of your database. Postgresql Database is used in this example. so the postgresql-8.4-701.jdbc3.jar is added to the eclipse project. Continue reading JDBC – Java Database Connectivity @ 1→
My first flash pie chart looks wonderful. Actually there are many other chart types such as bar chart and radar chart etc. You can find more at here.
So now i would like to put the labels on the chart to indicate the actual meaning of the figures. Here is an example shows you how to add labels on the lovely pie chart. Continue reading FlashChartHelper @ 2→
The CakePHP website which i am working has a voting module. So after voting, i would like to show the vote result graphically instead of listing the corresponding vote figure next to the vote option in text. So i search on the web and find the FlashChartHelper. The following steps show u how to create u own lovely chart. Try it! Continue reading FlashChartHelper @ 1→
To parse an xml in java, we can make use of the JAXP – Java API for XML Parsing. The JAXP provides 2 standards which are SAX and DOM respectively. Here is the sample code which parses an xml using the DOM standard. Continue reading JAXP – Java API for XML Parsing @ 1→