Cheapest VPS on the world

After search on the Internet for VPS, I found this site where you can found the cheapest VPS on the world, started with just $3, you can own a VPS with 512Mb RAM (1Gb Burst), 40GB HDD and the Bandwidth is 1000Gb/month. It's great, isn't it? I purchased a VPS & I feel very happy with it's performance. Their customer support is Excellent, they answer the support ticket very fast and they really make me satisfied with their support.

So, what are you waiting for, why don't you just Register an account & select your VPS now.

Clixsense account suspended

After I earned about $5.7 (about 3-4 months to earn that amount), today, ClixSense suddenly suspended my account, they told me that I have violate their TOS..... If I violate their TOS, why don't they suspended my account in the EARLY time to not waste my time for clicking their ADS? And why don't they send a WARNING if I make a mistake? I think they gonna be scam. Don't waste your time here, maybe someday your account will get SUSPENDED. If you have any opinions, feel free to shares. Good Luck! Don't make any mistake or YOUR ACCOUNT WILL GET BANNED
ClixSense Account Suspended

My MOS Certificate

After take part in MOS Exam, I passed, and got the MOS (Microsoft Office Specialist) Certificate and win a trip to US, Las Vegas, Nevada to compete with others student over the world this year. It may help me to have a good job in the future.
MOS - Microsoft Office Specialist Excel 2010 Expert

41 hours stuck in elavator

Java - connect to SQL Server using JDBC ODBC in win 64bit

When I do my School Project (Create an Java App connect to an DB), I found it's can't be done in windows 64bit, so I search the Internet and I found my own way to finish it in Windows 64bit. Just follow these step below.

Step 1
Run the 32-bit odbc driver using
WinKey+R, then copy-paste the below command
C:\Windows\SysWOW64\odbcad32.exe

Step 2
Make a dsn named “SQLDB” or whatever name you want to.

Step 3
Create a new project in eclipse.

Step 4
Change the jre to the java installed inside
C:\Program Files (x86)\java
Use this as “JRE System Library”


Step 5
Use the below code to connect to connect to SQL Server (It's a SQL_Connection class)
import java.sql.*;


public class SQL_Connection {
    public static Connection GetConnection()
    {
        try{
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
     Connection connect=DriverManager.getConnection("jdbc:odbc:SQLDB");
     return connect;
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
            return null;
        }
    }
    public static int ExecuteQueryString(String querystring)
    {
        try{
            Statement st= GetConnection().createStatement();
            return st.executeUpdate(querystring);
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
        }
        return -1;
    }
    public static ResultSet getResultSet(String querystring)
    {
        try{
            Statement st= GetConnection().createStatement();
            ResultSet rs= st.executeQuery(querystring);
            return rs;
        }
        catch(Exception ex)
        {
            //ex.printStackTrace();
            return null;
        }
    }
    public static void Close_Connection(Connection conn)
    {
        try
        {conn.close();}
        catch(Exception ex)
        {}
    }
}
DONE!!!!

Sponsors