All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bixuebihui.jdbc.ClobString Maven / Gradle / Ivy

Go to download

a fast small database connection pool and a active record flavor mini framework

There is a newer version: 1.15.3.3
Show newest version
package com.bixuebihui.jdbc;


/**
 * 用于支持Oracle的CLOB字段
 *
 * @author xingwx
 * @version $Id: $Id
 */
public class ClobString {
	private String content;

    /**
     * 

Constructor for ClobString.

* * @param content a {@link java.lang.String} object. */ public ClobString(String content){ this.content = content; } /** *

Getter for the field content.

* * @return a {@link java.lang.String} object. */ public String getContent() { return content; } /** *

Setter for the field content.

* * @param content a {@link java.lang.String} object. */ public void setContent(String content) { this.content = content; } /** *

toString.

* * @return a {@link java.lang.String} object. */ @Override public String toString() { return content; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy