Pages

Tuesday 30 July 2013

PROPERTIES OF RDBMS IN ORACLE

1.data should store in the form of a table.a table can be different as collection of rows&columns
A horizontal lines as Rows or Records/touples
A vertical lines are known as fields or attributes/columns
the intersection of  rows&columns is known as cell
                              a cell is a place where we can store or a data.the other name of table can be known as entity/object.
 table/entity/object:
             fields/attributes/columns

 rows/records/touples





2.table should not contain duplicate column
3.while do inserts the records the table user no need to follow any specific order.
4.data base should not contain duplicate objects 
5.while do defines columns in the table user follow no need to order

Saturday 27 July 2013

WHAT IS WRAPPER CLASS & WAHT IS BOXING & UNBOXING&WHAT IS AUTO BOXING&AUTO UNBOXING

WHAT IS WRAPPER CLASSES:
                   In order to represent the primitive data type values with the concept of object we are going to
use some pre defined classes.
            The classes which we are using to represent primitive data values in the form of object are called as WRAPPER CLASSES.
                    to represent the each&every primitive datatype value in the form of object there will be a corresponding class is available.




        




all the wrapper classes are present inside a predefined package called as java.lang

Integer i1=new Integer(100);
Integer i2=new Integer("123");



WHAT IS BOXING:
                     the concept of representing the primitive data type value in the form of it's equivalent wrapper class object is known as boxing.
 int i=200;
Integer i1=new Integer(i);//boxing


WHAT IS UNBOXING
:
                   the concept of getting back the primitive data value which is present inside wrapper class object to corresponding primitive data type value is known as unboxing>
              int i=100;
              integer i1=new integer(i)//boxing
              int j=i1.value()//unboxing
 in order to perform unboxing we are going to use the predefined methods which are present inside wrapper classes
ex:
        class wdemo()
         {
           public static void main()
           Integer i1=new Integer(100);
           system.out.println(i);
           Integer i2=new Integer("1234");
          system.out.println(i2);
           int i=i1.intvalue();
           int j=i2.intvalue();
           int k=i+j;
           system.out.println(k);
           Integer i3=new Integer();
              system.out.println("hello");
}
}

output:
              100   
              1234   
              1334
               hello

AUTO BOXING:
                    The concept of representing the primitive data value in the form of corresponding wrapper class object automatically by the jvm is known as auto boxing.
                    int i=100;
                    Integer i1=i;//integer i1=i Integer(i);

ex:
         int i=300;
         Integer i1=new Integer(400);
         int j=i+i1;


AUTO UNBOXING:
                          
                  The concept of geeting back the primitive data type value which is present inside wrapper class object automatically by the jvm is known as auto boxing.
                     Integer i2=new integer(200);
                      int j=i2//int j=i2.intvalue();

ex:
         int i=400;
         Integer i1=new Integer(300);
         Integer i2=i1+i;
ex:
        class wdemo2()
         {
             public static void main()
             {
              Integer i1=new Integer(100);
              Integer i2=new Integer("1234");
              Integer j=i1+i2;
              System.out.println(j);
               System.out.println("hello");
       }
     } 
output:
          1334
           hello   
              


                     

Friday 19 July 2013

DOWNLOAD JAVA SOFTWARE:Java SE Development Kit 7 Download

Java SE Development Kit 7 Downloads


Thank you for downloading this release of the Java Platform, Standard Edition Development Kit (JDK). The JDK is a development environment for building applications, applets, and components using the Java programming language.
The JDK includes tools useful for developing and testing programs written in the Java programming language and running on the Java platform.
Java Applet & Web Start - Code Signing 
Starting with Java SE 7u21 all Java Applets and Web Start Applications are encouraged to be signed with a trusted certificate.

Oracle Java SE Critical Patch Update Advisory - April 2013

World's Fastest Server for Java! This white paper describes the key features of Oracle Solaris that make it the best platform for deploying Java applications.

Oracle Security Alert for CVE-2013-1493 (March 4, 2013)

JDK 8 (with JavaFX) Early Access for ARM - An Early Access release of JDK 8, including JavaFX, on Linux for ARM processors is now available immediate download from Java.net.

for
Oracle Academy Introduces New Java Curriculum - Java Courses Allow Students to Graduate with Industry-Relevant Ski


download java software:

choose os and download it click here
note:enter into page first accept the license

Thursday 18 July 2013

HISTORY OF JAVA AND DOWNLOAD(PDF)

what is java:
            java is a object oriented,platform independent programming language from sun micro system which is released into the marked on the name of development of the distributed applications.

what is java slogan:
                      "Write Once Run Anywhere "(WORA)
java is a platform independent programming language.it means that program is written once and the program is executed irrespective of the operating system.

why java is suitable for internet:
     security problems on internet are eliminated through java.java is a system independent,java is executable on any platform
note:know the what is platform and what platform independent click

JAVA HISTORY:
  IN 1990,sun microsystems inc., USA is developed software for remotes..in 1993,oak language is developed,by that time some company is registered oak name,for this reason they named as "java".
in 1995,sun world conference has given entire details of java.

                                  about j2se and j2me and j2ee clck here
java software all copy rights are purchased oracle



CLICK HERE DOWNLOAD PDF DOCUMENT

Sunday 14 July 2013

Oracle database 11g software download

Oracle Database 11g Express Edition


Free to develop, deploy, and distribute


Oracle Database 11g Express Edition (Oracle Database XE) is an entry-level, small-footprint database based on the Oracle Database 11g Release 2 code base.  It's free to develop, deploy, and distribute; fast to download; and simple to administer.
Oracle Database XE is a great starter database for:
  • Developers working on PHP, Java, .NET, XML, and Open Source applications
  • DBAs who need a free, starter database for training and deployment
  • Independent Software Vendors (ISVs) and hardware vendors who want a starter database to distribute free of charge
  • Educational institutions and students who need a free database for their curriculum
With Oracle Database XE, you can now develop and deploy applications with a powerful, proven, industry-leading infrastructure, and then upgrade when necessary without costly and complex migrations.
Oracle Database XE can be installed on any size host machine with any number of CPUs (one database per machine), but XE will store up to 11GB of user data, use up to 1GB of memory, and use one CPU on the host machine.

download oracle software:
   note: click below and accept license and registered the oracle website and download         

Download Oracle Database Express Edition 11g Release 2 for Windows x32 click here
- Unzip the download and run the DISK1/setup.exe
- Does not work in Windows x64
Download Oracle Database Express Edition 11g Release 2 for Linux x64 click here
-Unzip the download and the RPM file can be installed as normal
 

JAVA EDITIONS AND WHAT IS JDK AND JRE

Sun micro systems provides ,with the advent of java,new versions had multiple configurations built for different types of platforms.those are
  • JSE
  • JEE
  • JME.
JSE:java platform,standard edition:
JSE stands for java platform,standard edition,it is specification used to develop fundamental
java application they may be standard or network.

JEE:java platform,enterprise edition:

 JEE stands for java platform, enterprise edition,it is specification used to develop business
solutions for network (or)JEE is specification that provides an environment to run the web components and the enterprise components.

 JME:java platform,micro edition:
JEE stands for java platform, micro edition,it is specification used for developing wireless and
embedded system.embedded system is software,which directly installed into hardware.
java software:
             java software is cotegorized in to two types
                JAVA=JDK+JRE

                                    


JDK:
           it stands for java development kit
JRE:
          it stands for java runtime environment 
          JRE=JVM+JAVA LIBRARY

if java programs have to run we required the jvm and java library.jvm will starts execution of java
program from main method only.
  • in java every statement must end with semi colon(;).
  • java is case sensitive programming language.