Free download Ares Galaxy

Feb. 04, 2011

Posted on IT

Ares galaxy is a one of the peer-to-peer (P2P) file sharing software. Click here ares galaxy download to download free. This application allows fast speed download files and share files with friends, family, coworkers and the Ares community. Also Ares Galaxy is free open source. Due to free open source, program source is easily available to anybody who has download ares free download. So,anyone programmers can develop new features in it.
Ares useful features are:
Powerful Library Organizer
Built-in Multimedia Player
Fastest Downloads
Integrated Chat Rooms
ShoutCast/Torrent file Support

Graduate Engineering Schools

Feb 03, 2011

Posted on Education

Now a days, everybody dream is to become an engineers. People are looking for their graduate in engineer. Most people are looking for Engineering Schools in USA .One of the top U.S. graduate engineering schools, best ranked college in USA. The top 5 engineering schools are listed below:

  • Massachusetts Institute of Technology, Cambridge, MA
  • Stanford University, Stanford, CA
  • University of California – Berkeley, Berkeley, CA
  • Georgia Institute of Technology, Atlanta, GA
  • University of Illinois – Urbana-Champaign, Urbana, IL

VPN Hosting

Jan 26, 2011

Posted on IT

Are you looking for VPN hosting? vpnmaster.com is the best professional VPN Hosting solutions. VPN Master provides one of the best customer services we require. VPN Master provide us fastest VPN connections. Servers location is in USA. The server has multiple gigabit backbone connection.There are three different plans: Monthly Plan, 3 Monthly Plan, Yearly Plan. So Buy VPN now and save and protect your DATA.

Connection with DB

Nov. 2, 2010

Posted on Java

import java.sql.*;
import oracle.jdbc.dbaccess.*; // connect to oracle db to load oracle driver

// Connect to ANY Database USING DSN
// ————————————
String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
String url = "jdbc:odbc:testDSN";
String userid = "";
String password = "";

Class.forName( driver );
Connection connection = DriverManager.getConnection( url, userid, password );

// Connect to the MS Access Database WITHOUT using DSN
// ——————————————————-
more...

With MS Access (Select, Insert)

Oct. 12, 2010

Posted on Java

import java.sql.*;

public void actionPerformed(ActionEvent ae)
{
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, e.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
}
more...