All Examples  This Package
  Class examples.jdbc.oracle.simpleselect
java.lang.Object
   |
   +----examples.jdbc.oracle.simpleselect
  -  public class simpleselect
  
-  extends Object
  
This simple example shows how data and result set metadata
 is selected with JDBC.
 It assumes the table empdemo exists. This table is created
 in the simplesql example.
 
 This example is run on the command line and is output to
 System.out.
To set up this example:
- Set up your development shell as described in Setting up your environment.
 -  Change connection parameters to correspond to your Oracle configuration.
 If you need more help, check the section on connecting
to a database in the Developers Guide, Using jdbcKona/Oracle.
 - Compile this example by executing the following command in your development shell:
$ javac -d %CLIENT_CLASSES% simpleselect.java
	
 - Run this example by executing the following command in your development shell:
$ java examples.jdbc.oracle.simpleselect
 
  -  Author:
  
 -  Copyright (c) 1997-1999 by BEA WebXpress, Inc. All Rights Reserved.
 
  
  -  
	simpleselect()
   -  
 
  
  -  
	main(String[])
   -  
 
  
simpleselect
 public simpleselect()
  
main
 public static void main(String argv[]) throws Exception
All Examples  This Package