This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.sql.rowset.serial
class SerialDatalink

java.lang.Object extended by javax.sql.rowset.serial.SerialDatalink
All Implemented Interfaces:
Serializable, Cloneable

public class SerialDatalink
extends Object
implements Serializable, Cloneable

A serialized mapping in the Java programming language of an SQL DATALINK value. A DATALINK value references a file outside of the underlying data source that the data source manages.

RowSet implementations can use the method RowSet.getURL to retrieve a java.net.URL object, which can be used to manipulate the external data.

      java.net.URL url = rowset.getURL(1);
 


Constructor Summary

          Constructs a new SerialDatalink object from the given java.net.URL object.
 
Method Summary
 URL

          Returns a new URL that is a copy of this SerialDatalink object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerialDatalink

public SerialDatalink(URL url)
               throws SerialException
Constructs a new SerialDatalink object from the given java.net.URL object.

Parameters:
url
Throws:
SerialException - if url parameter is a null
Method Detail

getDatalink

public URL getDatalink()
                throws SerialException
Returns a new URL that is a copy of this SerialDatalink object.

Returns:
a copy of this SerialDatalink object as a URL object in the Java programming language.
Throws:
SerialException - if the URL object cannot be de-serialized


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.