Windows 7 Bootable
Note:
you should select and change to 4.7gb as DVD size in Ultra ISO at top right corner.
Download boot_se7en.bif below
Official Site
click here to view our new site launched
Sunday, April 24, 2011
Saturday, April 23, 2011
Remove Windows7 Activation
To make windows 7 as full version without activation using keys.
- Download RemoveWAT tool
- Click and run as Administrator.
- Cilck on 'Remove WAT 'option.
- Then Wait after explorer restarts and see your windows 7 property window does not show " 30 days to activate windows" windows area.
Tuesday, April 19, 2011
MYSQL connectivity Java
// java bean for database connection to MySQL
package db;
import java.sql.*;
public class DbConnect {
private Connection conn = null;
public Connection OracleConnect() {
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "root");
System.out.println("connected");
//return conn;
} catch (Exception e) {
//in case no password error catching error and try again.
try{
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "");
}
catch (Exception ee) {
System.out.println("Error in Database Connection2"+ee.getMessage());
}
System.out.println("Error in Database Connection1"+e.getMessage());
}
finally{
return (conn);
}
}
protected void CloseConnection() {
try {
conn.close();
} catch (SQLException ex) {
System.out.println(ex.getMessage());
}
}
}
Subscribe to:
Posts (Atom)