| 1 package com.daffodilwoods.daffodildb.server.datasystem.persistentsystem; 2 3 import com.daffodilwoods.database.resource.*; 4 import java.io.*; 5 import java.sql.*; 6 import com.daffodilwoods.daffodildb.server.sql99.utils._Reference; 7 8 12 13 public class DClob extends DBlob { 14 15 16 17 public DClob(ClusterCharacteristics cc,LobManager lobManager0,short recordNumber0) { 18 super(cc,lobManager0,recordNumber0); 19 20 } 21 22 29 30 public long length() throws DException { 31 return super.length(); 32 } 33 34 42 43 public String getSubString(long pos, int length) throws SQLException,DException { 44 return new String (getBytes(pos,length)); 45 } 46 47 48 49 50 51 52 53 54 } 55 | Popular Tags |