Dagu on April 24th, 2009

A few days ago, Oracle, a company which is known by it’s RDBMS, Oracle Database, bought Sun Microsystems ($7.4 billion.. wheewwww), a company which is known by it’s famous programming language, Java. As we know, Sun had bought MySQL, the famous open source database. Hmm… can you imagine how big Oracle now? I just wonder [...]

Continue reading about After Oracle Bought Sun

Dagu on April 15th, 2009

Java is one of the most popular programming languages. I learned Java a few years ago. I learned it in Windows OS. Now I need to install it in Ubuntu. Here are the steps: 1) You need to update Ubuntu Repository. Type this command: sudo apt-get update Just wait till your Ubuntu Repository updated. 2) [...]

Continue reading about How To Install Java in Linux Ubuntu

Dagu on November 24th, 2007

To connect a Java application with MySQL, we need a driver as interface between Java and MySQL. Driver can be downloaded from the official MySQL website. [ Download MySQL Connector ] Extract downloaded file (file type: *.jar). Copy that file to directory [jre installation]/lib/ext/. Ok, your Java application is ready to connect with MySQL.

Continue reading about Java & MySQL Connection