XML Databases and Tools 3 : XML Database : XML : Java examples (example source code) Organized by topic

Java
C++
PHP


Java  »  XML   » [  XML Database  ]  Screenshots 
 



XML Databases and Tools 3


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

import org.w3c.dom.Document;

import com.sun.org.apache.xml.internal.serialize.XMLSerializer;

public class MainClass {

  public static void main(String[] args) {

    try {
      Class.forName("COM.cloudscape.core.JDBCDriver").newInstance();

      Connection conn = DriverManager.getConnection("jdbc:cloudscape:GAMETRADER");

      Statement s = conn.createStatement();

      ResultSet rs = s.executeQuery("SELECT * FROM tableName");

      while (rs.next()) {
        int id = rs.getInt("GAMEID");
        Document manual = (Documentrs.getObject("MANUAL");
        XMLSerializer serialize = new XMLSerializer(System.out, null);
        serialize.serialize(manual);
      }

    catch (Throwable e) {
      System.out.println("exception thrown");
      System.out.println(e);
    }
  }
}



           
       
Related examples in the same category
1.   XML Databases and Tools 1: read from clob
2.  XML Databases and Tools 2: read from blob
3.  XML Databases DOM
























Home| Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.