Thursday, October 20, 2011

Change global_name of oracle

SQL> SELECT * FROM GLOBAL_NAME; GLOBAL_NAME -------------------------------------------------------------------------------- ORATEMP.REGRESS.RDBMS.DEV.US.ORACLE.COM SQL> ALTER DATABASE RENAME GLOBAL_NAME TO oratemp ; SQL> SELECT * FROM GLOBAL_NA...

Sunday, October 16, 2011

configure glassfish in myeclipse

http://glassfishplugins.java.net/eclipse34/index.h...

Tuesday, October 11, 2011

Java Database Connectivity (JDBC Tutorial)

Java Database Connectivity: JDBC (Java Database Connectivity) is designed to allow users to use SQL(Structured Query Language) to query databases. It makes the tasks of the developers easy as it handles all low-level concerns about particular database types. JDBC is similar to Microsoft’s ODBC with the plus point “Platform Independence”. To use JDBC, you need to have database driver to communicate with the database. Normally drivers are installed while installing the database. Like if you install MS SQL Server, Oracle or DB2, database...

Change( Screen) Windows display resolution.

'Using this code to change Screen Resolution......... or your computer ' this code is use for VB 6.0 '********************** Module***************** Declarations Public Const EWX_LOGOFF = 0 Public Const EWX_SHUTDOWN = 1 Public Const EWX_REBOOT = 2 Public Const EWX_FORCE = 4 Public Const CCDEVICENAME = 32 Public Const CCFORMNAME = 32 Public Const DM_BITSPERPEL = &H40000 Public Const DM_PELSWIDTH = &H80000 Public Const DM_PELSHEIGHT = &H100000 Public Const CDS_UPDATEREGISTRY = &H1 Public Const CDS_TEST = &H4 Public Const DISP_CHANGE_SUCCESSFUL...

Digital clock by using timer (swing) in Java

Here is a piece of code to build a Java clock, using swing,         Timer t = new Timer(1000, updateClockAction);         t.start(); ActionListener updateClockAction = new ActionListener() {   public void actionPerformed(ActionEvent e) {       // Assumes clock is a custom component      lblTime.setText(System.currentTimeMillis()+"");       // OR     ...

Digital clock by using Java

Here is a piece of code to build a Java clock, that uses threads, gets the data for time automatically and is not interrupted if you click something else on the window. There are some comments around the code to help you understand what's happening. import java.awt.*; import javax.swing.*;       import java.util.*; class Clock extends JFrame implements Runnable {   Thread runner; //declare global objects   Font clockFont;     ...

Convert Number to String

Convert Number to String in Java using Swing..... (Editor use: Net Bean) firstly create new project. in this project add one Java class file and name this file "EnglishNumberToWords.Java"  and copy following line of code in this file..... *************************Code******************************** package number; import java.text.DecimalFormat; public class EnglishNumberToWords {   private static final String[] tensNames = {     "",   ...

Upload and Retrieve image using JSP.

Upload and Retrieve image using JSP.            Hello friends,  I am write this blog for those programmer are required a code for “how to upload and retrieve images (photos) from server using JSP.” There is two jsp files are used in this project, and this project following libraries are required.         commons-fileupload.jar        commons-fileupload-1.2.1.jar        commons-io-1.4 this...

Send mail using Jsp and Servlet.

 Hello firends, using this blog you can send mail using JSP and Servlets, follow the following steps to design this application Send mail using Jsp and Servlet.    Create new web project using netbean.        For this project following 5 labraries are requered. a.       activation.jar b.      mail.jar c.       mailapi.jar d.      pop3.jar e.     ...