Enumeration Type: JDBC : JDBC Data Type « Database SQL JDBC « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Database SQL JDBC » JDBC Data Type 




Enumeration Type: JDBC
 
/*

MySQL and Java Developer's Guide

Mark Matthews, Jim Cole, Joseph D. Gradecki
Publisher Wiley,
Published February 2003, 
ISBN 0471269239

*/


import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;

public class EnumTesting {
  Connection connection;

  Statement statement;

  public EnumTesting() {
    try {
      Class.forName("com.mysql.jdbc.Driver").newInstance();
      connection = DriverManager
          .getConnection("jdbc:mysql://192.168.1.25/test?user=spider&password=spider");
    catch (Exception e) {
      System.err.println("Unable to find and load driver");
      System.exit(1);
    }
  }

  public void doWork() {
    try {
      statement = connection.createStatement();
      ResultSet rs = statement
          .executeQuery("SHOW COLUMNS FROM enumtest LIKE 'status'");

      rs.next();
      String enums = rs.getString("Type");
      System.out.println(enums);
      int position = 0, count = 0;
      String[] availableEnums = new String[10];

      while ((position = enums.indexOf("'", position)) 0) {
        int secondPosition = enums.indexOf("'", position + 1);
        availableEnums[count++= enums.substring(position + 1,
            secondPosition);

        position = secondPosition + 1;
        System.out.println(availableEnums[count - 1]);
      }

      rs.close();
      statement.close();
      connection.close();
    catch (Exception e) {
      e.printStackTrace();
    }
  }

  public static void main(String[] args) {
    Enum e = new Enum();
    e.doWork();
  }
}

           
         
  














Related examples in the same category
1.Save Object JDBC
2.Get the java.sql.Types type to which this database-specific type is mapped
3.converting a java.sql.Types integer value into a printable name
4.Getting the Name of a JDBC Type
5.Get the database-specific type name
6.Retrieve type info from the result set
7.Listing Available SQL data Types Used by a Database
8.uses reflection to get all the field names from java.sql.Types.
9.Determining the Type of a Character: determine the properties of a character for the entire Unicode character set.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.