Java Code Examples for java.sql.SQLXML#getCharacterStream()

The following examples show how to use java.sql.SQLXML#getCharacterStream() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Jdbc4SqlXmlHandler.java    From spring-analysis-note with MIT License 4 votes vote down vote up
@Override
@Nullable
public Reader getXmlAsCharacterStream(ResultSet rs, String columnName) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnName);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 2
Source File: Jdbc4SqlXmlHandler.java    From spring-analysis-note with MIT License 4 votes vote down vote up
@Override
@Nullable
public Reader getXmlAsCharacterStream(ResultSet rs, int columnIndex) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnIndex);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 3
Source File: Jdbc4SqlXmlHandler.java    From java-technology-stack with MIT License 4 votes vote down vote up
@Override
@Nullable
public Reader getXmlAsCharacterStream(ResultSet rs, String columnName) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnName);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 4
Source File: Jdbc4SqlXmlHandler.java    From java-technology-stack with MIT License 4 votes vote down vote up
@Override
@Nullable
public Reader getXmlAsCharacterStream(ResultSet rs, int columnIndex) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnIndex);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 5
Source File: Jdbc4SqlXmlHandler.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Reader getXmlAsCharacterStream(ResultSet rs, String columnName) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnName);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 6
Source File: Jdbc4SqlXmlHandler.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Reader getXmlAsCharacterStream(ResultSet rs, int columnIndex) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnIndex);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 7
Source File: Jdbc4SqlXmlHandler.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
@Override
public Reader getXmlAsCharacterStream(ResultSet rs, String columnName) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnName);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 8
Source File: Jdbc4SqlXmlHandler.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
@Override
public Reader getXmlAsCharacterStream(ResultSet rs, int columnIndex) throws SQLException {
	SQLXML xmlObject = rs.getSQLXML(columnIndex);
	return (xmlObject != null ? xmlObject.getCharacterStream() : null);
}
 
Example 9
Source File: XMLFormatter.java    From jsqsh with Apache License 2.0 4 votes vote down vote up
public String format (Object value) {
    
    SQLXML xml = (SQLXML) value;
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    
    try {
        
        Reader in = xml.getCharacterStream();
        prettyPrint(createDOM(in), out);
        
        in.close();
        out.flush();
        
        return out.toString();
    }
    catch (Exception e) {
        
        return "XML parse error (" + e.getMessage() + ")";
    }
    
}