Added:
branches/branch_5_1/connector-j/src/com/mysql/jdbc/NClob.java
Log:
added new class NClob
Added: branches/branch_5_1/connector-j/src/com/mysql/jdbc/NClob.java
===================================================================
--- branches/branch_5_1/connector-j/src/com/mysql/jdbc/NClob.java 2006-02-21 21:29:15 UTC (rev 4962)
+++ branches/branch_5_1/connector-j/src/com/mysql/jdbc/NClob.java 2006-02-21 21:31:03 UTC (rev 4963)
@@ -0,0 +1,42 @@
+/*
+ Copyright (C) 2002-2004 MySQL AB
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of version 2 of the GNU General Public License as
+ published by the Free Software Foundation.
+
+ There are special exceptions to the terms and conditions of the GPL
+ as it is applied to this software. View the full text of the
+ exception in file EXCEPTIONS-CONNECTOR-J in the directory of this
+ software distribution.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+
+ */
+package com.mysql.jdbc;
+
+/**
+ * Simplistic implementation of java.sql.NClob for MySQL Connector/J
+ *
+ * @author Tetsuro Ikeda
+ * @version $Id: NClob.java 4963 2006-02-21 13:28:14Z tikeda $
+ */
+public class NClob extends Clob implements java.sql.NClob {
+
+ NClob() {
+ super();
+ }
+
+ NClob(String charDataInit) {
+ super(charDataInit);
+ }
+}
| Thread |
|---|
| • Connector/J commit: r4963 - branches/branch_5_1/connector-j/src/com/mysql/jdbc | tikeda | 21 Feb |