Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
dfd26da7
提交
dfd26da7
authored
5月 17, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Ensure the JDBC client doesn't reference the Database class. Add missing @Override
上级
3fcb3c2a
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
295 行增加
和
330 行删除
+295
-330
Database.java
h2/src/main/org/h2/engine/Database.java
+2
-1
Session.java
h2/src/main/org/h2/engine/Session.java
+3
-1
SessionRemote.java
h2/src/main/org/h2/engine/SessionRemote.java
+1
-0
ValueDataType.java
h2/src/main/org/h2/mvstore/db/ValueDataType.java
+3
-2
Data.java
h2/src/main/org/h2/store/Data.java
+1
-1
LobStorageBackend.java
h2/src/main/org/h2/store/LobStorageBackend.java
+181
-251
LobStorageFrontend.java
h2/src/main/org/h2/store/LobStorageFrontend.java
+37
-18
LobStorageInterface.java
h2/src/main/org/h2/store/LobStorageInterface.java
+8
-0
Recover.java
h2/src/main/org/h2/tools/Recover.java
+5
-4
DataType.java
h2/src/main/org/h2/value/DataType.java
+3
-3
Value.java
h2/src/main/org/h2/value/Value.java
+10
-9
ValueLob.java
h2/src/main/org/h2/value/ValueLob.java
+27
-26
ValueLobDb.java
h2/src/main/org/h2/value/ValueLobDb.java
+14
-14
没有找到文件。
h2/src/main/org/h2/engine/Database.java
浏览文件 @
dfd26da7
...
...
@@ -42,6 +42,7 @@ import org.h2.store.FileLock;
import
org.h2.store.FileStore
;
import
org.h2.store.InDoubtTransaction
;
import
org.h2.store.LobStorageBackend
;
import
org.h2.store.LobStorageFrontend
;
import
org.h2.store.PageStore
;
import
org.h2.store.WriterThread
;
import
org.h2.store.fs.FileUtils
;
...
...
@@ -1121,7 +1122,7 @@ public class Database implements DataHandler {
if
(
lobStorageIsUsed
)
{
try
{
getLobStorage
();
lobStorage
.
removeAllForTable
(
LobStorage
Back
end
.
TABLE_ID_SESSION_VARIABLE
);
lobStorage
.
removeAllForTable
(
LobStorage
Front
end
.
TABLE_ID_SESSION_VARIABLE
);
}
catch
(
DbException
e
)
{
trace
.
error
(
e
,
"close"
);
}
...
...
h2/src/main/org/h2/engine/Session.java
浏览文件 @
dfd26da7
...
...
@@ -33,6 +33,7 @@ import org.h2.schema.Schema;
import
org.h2.store.DataHandler
;
import
org.h2.store.InDoubtTransaction
;
import
org.h2.store.LobStorageBackend
;
import
org.h2.store.LobStorageFrontend
;
import
org.h2.table.Table
;
import
org.h2.util.New
;
import
org.h2.util.SmallLRUCache
;
...
...
@@ -148,7 +149,7 @@ public class Session extends SessionWithState {
old
=
variables
.
remove
(
name
);
}
else
{
// link LOB values, to make sure we have our own object
value
=
value
.
link
(
database
,
LobStorage
Back
end
.
TABLE_ID_SESSION_VARIABLE
);
value
=
value
.
link
(
database
,
LobStorage
Front
end
.
TABLE_ID_SESSION_VARIABLE
);
old
=
variables
.
put
(
name
,
value
);
}
if
(
old
!=
null
)
{
...
...
@@ -578,6 +579,7 @@ public class Session extends SessionWithState {
}
}
@Override
public
boolean
hasPendingTransaction
()
{
return
undoLog
.
size
()
>
0
;
}
...
...
h2/src/main/org/h2/engine/SessionRemote.java
浏览文件 @
dfd26da7
...
...
@@ -123,6 +123,7 @@ public class SessionRemote extends SessionWithState implements DataHandler {
return
trans
;
}
@Override
public
boolean
hasPendingTransaction
()
{
if
(
clientVersion
<
Constants
.
TCP_PROTOCOL_VERSION_10
)
{
return
true
;
...
...
h2/src/main/org/h2/mvstore/db/ValueDataType.java
浏览文件 @
dfd26da7
...
...
@@ -15,6 +15,7 @@ import java.sql.ResultSetMetaData;
import
java.sql.SQLException
;
import
java.sql.Time
;
import
java.sql.Timestamp
;
import
org.h2.constant.ErrorCode
;
import
org.h2.constant.SysProperties
;
import
org.h2.message.DbException
;
...
...
@@ -23,7 +24,7 @@ import org.h2.mvstore.type.DataType;
import
org.h2.result.SortOrder
;
import
org.h2.store.Data
;
import
org.h2.store.DataHandler
;
import
org.h2.store.LobStorage
Back
end
;
import
org.h2.store.LobStorage
Front
end
;
import
org.h2.store.LobStorageInterface
;
import
org.h2.tools.SimpleResultSet
;
import
org.h2.util.DateTimeUtils
;
...
...
@@ -597,7 +598,7 @@ public class ValueDataType implements DataType {
if
(
smallLen
>=
0
)
{
byte
[]
small
=
DataUtils
.
newBytes
(
smallLen
);
buff
.
get
(
small
,
0
,
smallLen
);
return
LobStorage
Back
end
.
createSmallLob
(
type
,
small
);
return
LobStorage
Front
end
.
createSmallLob
(
type
,
small
);
}
else
if
(
smallLen
==
-
3
)
{
int
tableId
=
readVarInt
(
buff
);
long
lobId
=
readVarLong
(
buff
);
...
...
h2/src/main/org/h2/store/Data.java
浏览文件 @
dfd26da7
...
...
@@ -787,7 +787,7 @@ public class Data {
if
(
smallLen
>=
0
)
{
byte
[]
small
=
DataUtils
.
newBytes
(
smallLen
);
read
(
small
,
0
,
smallLen
);
return
LobStorage
Back
end
.
createSmallLob
(
type
,
small
);
return
LobStorage
Front
end
.
createSmallLob
(
type
,
small
);
}
else
if
(
smallLen
==
-
3
)
{
int
tableId
=
readVarInt
();
long
lobId
=
readVarLong
();
...
...
h2/src/main/org/h2/store/LobStorageBackend.java
浏览文件 @
dfd26da7
差异被折叠。
点击展开。
h2/src/main/org/h2/store/LobStorageFrontend.java
浏览文件 @
dfd26da7
...
...
@@ -11,6 +11,7 @@ import java.io.IOException;
import
java.io.InputStream
;
import
java.io.Reader
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
import
org.h2.value.Value
;
import
org.h2.value.ValueLob
;
import
org.h2.value.ValueLobDb
;
...
...
@@ -20,6 +21,16 @@ import org.h2.value.ValueLobDb;
* This is the front-end i.e. the client side of the LOB storage.
*/
public
class
LobStorageFrontend
implements
LobStorageInterface
{
/**
* The table id for session variables (LOBs not assigned to a table).
*/
public
static
final
int
TABLE_ID_SESSION_VARIABLE
=
-
1
;
/**
* The table id for temporary objects (not assigned to any object).
*/
public
static
final
int
TABLE_TEMP
=
-
2
;
private
final
DataHandler
handler
;
...
...
@@ -53,29 +64,16 @@ public class LobStorageFrontend implements LobStorageInterface {
return
new
BufferedInputStream
(
new
LobStorageRemoteInputStream
(
handler
,
lobId
,
hmac
,
byteCount
));
}
/**
* Copy a lob.
*
* @param type the type
* @param oldLobId the old lob id
* @param tableId the new table id
* @param length the length
* @return the new lob
*/
@Override
public
ValueLobDb
copyLob
(
int
type
,
long
oldLobId
,
int
tableId
,
long
length
)
{
// TODO this should not be called at all, but that's a refactoring for another day
// this should never be called
throw
new
UnsupportedOperationException
();
}
@Override
public
void
setTable
(
long
lobId
,
int
tableIdSessionVariable
)
{
throw
new
UnsupportedOperationException
();
}
/**
* Create a BLOB object.
*
* @param in the input stream
* @param maxLength the maximum length (-1 if not known)
* @return the LOB
*/
@Override
public
Value
createBlob
(
InputStream
in
,
long
maxLength
)
{
if
(
SysProperties
.
LOB_IN_DATABASE
)
{
...
...
@@ -104,5 +102,26 @@ public class LobStorageFrontend implements LobStorageInterface {
}
return
ValueLob
.
createClob
(
reader
,
maxLength
,
handler
);
}
/**
* Create a LOB object that fits in memory.
*
* @param type the value type
* @param small the byte array
* @return the LOB
*/
public
static
Value
createSmallLob
(
int
type
,
byte
[]
small
)
{
if
(
SysProperties
.
LOB_IN_DATABASE
)
{
int
precision
;
if
(
type
==
Value
.
CLOB
)
{
precision
=
new
String
(
small
,
Constants
.
UTF8
).
length
();
}
else
{
precision
=
small
.
length
;
}
return
ValueLobDb
.
createSmallLob
(
type
,
small
,
precision
);
}
return
ValueLob
.
createSmallLob
(
type
,
small
);
}
}
h2/src/main/org/h2/store/LobStorageInterface.java
浏览文件 @
dfd26da7
...
...
@@ -56,6 +56,14 @@ public interface LobStorageInterface {
*/
InputStream
getInputStream
(
long
lobId
,
byte
[]
hmac
,
long
byteCount
)
throws
IOException
;
/**
* Set the table reference of this lob.
*
* @param lobId the lob
* @param table the table
*/
void
setTable
(
long
lobId
,
int
tableIdSessionVariable
);
/**
* Delete a LOB from the database.
*
...
...
h2/src/main/org/h2/tools/Recover.java
浏览文件 @
dfd26da7
...
...
@@ -39,6 +39,7 @@ import org.h2.store.FileLister;
import
org.h2.store.FileStore
;
import
org.h2.store.FileStoreInputStream
;
import
org.h2.store.LobStorageBackend
;
import
org.h2.store.LobStorageFrontend
;
import
org.h2.store.LobStorageInterface
;
import
org.h2.store.Page
;
import
org.h2.store.PageFreeList
;
...
...
@@ -195,7 +196,7 @@ public class Recover extends Tool implements DataHandler {
public
static
Value
.
ValueBlob
readBlobDb
(
Connection
conn
,
long
lobId
,
long
precision
)
{
DataHandler
h
=
((
JdbcConnection
)
conn
).
getSession
().
getDataHandler
();
LobStorageInterface
lobStorage
=
h
.
getLobStorage
();
return
ValueLobDb
.
create
(
Value
.
BLOB
,
lobStorage
,
LobStorage
Back
end
.
TABLE_TEMP
,
lobId
,
null
,
precision
);
return
ValueLobDb
.
create
(
Value
.
BLOB
,
lobStorage
,
LobStorage
Front
end
.
TABLE_TEMP
,
lobId
,
null
,
precision
);
}
/**
...
...
@@ -204,7 +205,7 @@ public class Recover extends Tool implements DataHandler {
public
static
Value
.
ValueClob
readClobDb
(
Connection
conn
,
long
lobId
,
long
precision
)
{
DataHandler
h
=
((
JdbcConnection
)
conn
).
getSession
().
getDataHandler
();
LobStorageInterface
lobStorage
=
h
.
getLobStorage
();
return
ValueLobDb
.
create
(
Value
.
CLOB
,
lobStorage
,
LobStorage
Back
end
.
TABLE_TEMP
,
lobId
,
null
,
precision
);
return
ValueLobDb
.
create
(
Value
.
CLOB
,
lobStorage
,
LobStorage
Front
end
.
TABLE_TEMP
,
lobId
,
null
,
precision
);
}
private
void
trace
(
String
message
)
{
...
...
@@ -1235,7 +1236,7 @@ public class Recover extends Tool implements DataHandler {
writer
.
println
(
"DELETE FROM "
+
name
+
";"
);
writer
.
println
(
"INSERT INTO "
+
name
+
" SELECT * FROM "
+
storageName
+
";"
);
if
(
name
.
startsWith
(
"INFORMATION_SCHEMA.LOBS"
))
{
writer
.
println
(
"UPDATE "
+
name
+
" SET TABLE = "
+
LobStorage
Back
end
.
TABLE_TEMP
+
";"
);
writer
.
println
(
"UPDATE "
+
name
+
" SET TABLE = "
+
LobStorage
Front
end
.
TABLE_TEMP
+
";"
);
deleteLobs
=
true
;
}
}
...
...
@@ -1261,7 +1262,7 @@ public class Recover extends Tool implements DataHandler {
writer
.
println
(
"DROP ALIAS READ_BLOB_DB;"
);
writer
.
println
(
"DROP ALIAS READ_CLOB_DB;"
);
if
(
deleteLobs
)
{
writer
.
println
(
"DELETE FROM INFORMATION_SCHEMA.LOBS WHERE TABLE = "
+
LobStorage
Back
end
.
TABLE_TEMP
+
";"
);
writer
.
println
(
"DELETE FROM INFORMATION_SCHEMA.LOBS WHERE TABLE = "
+
LobStorage
Front
end
.
TABLE_TEMP
+
";"
);
}
for
(
MetaRecord
m
:
schema
)
{
if
(
isSchemaObjectTypeDelayed
(
m
))
{
...
...
h2/src/main/org/h2/value/DataType.java
浏览文件 @
dfd26da7
...
...
@@ -31,7 +31,7 @@ import org.h2.jdbc.JdbcBlob;
import
org.h2.jdbc.JdbcClob
;
import
org.h2.jdbc.JdbcConnection
;
import
org.h2.message.DbException
;
import
org.h2.store.LobStorage
Back
end
;
import
org.h2.store.LobStorage
Front
end
;
import
org.h2.tools.SimpleResultSet
;
import
org.h2.util.New
;
import
org.h2.util.Utils
;
...
...
@@ -540,7 +540,7 @@ public class DataType {
}
case
Value
.
CLOB
:
{
if
(
session
==
null
)
{
v
=
LobStorage
Back
end
.
createSmallLob
(
Value
.
CLOB
,
rs
.
getString
(
columnIndex
).
getBytes
(
Constants
.
UTF8
));
v
=
LobStorage
Front
end
.
createSmallLob
(
Value
.
CLOB
,
rs
.
getString
(
columnIndex
).
getBytes
(
Constants
.
UTF8
));
}
else
{
Reader
in
=
rs
.
getCharacterStream
(
columnIndex
);
if
(
in
==
null
)
{
...
...
@@ -553,7 +553,7 @@ public class DataType {
}
case
Value
.
BLOB
:
{
if
(
session
==
null
)
{
v
=
LobStorage
Back
end
.
createSmallLob
(
Value
.
BLOB
,
rs
.
getBytes
(
columnIndex
));
v
=
LobStorage
Front
end
.
createSmallLob
(
Value
.
BLOB
,
rs
.
getBytes
(
columnIndex
));
}
else
{
InputStream
in
=
rs
.
getBinaryStream
(
columnIndex
);
v
=
(
in
==
null
)
?
(
Value
)
ValueNull
.
INSTANCE
:
session
.
getDataHandler
().
getLobStorage
().
createBlob
(
in
,
-
1
);
...
...
h2/src/main/org/h2/value/Value.java
浏览文件 @
dfd26da7
...
...
@@ -22,9 +22,9 @@ import java.sql.Types;
import
org.h2.constant.ErrorCode
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Database
;
import
org.h2.message.DbException
;
import
org.h2.store.LobStorageBackend
;
import
org.h2.store.DataHandler
;
import
org.h2.store.LobStorageFrontend
;
import
org.h2.tools.SimpleResultSet
;
import
org.h2.util.DateTimeUtils
;
import
org.h2.util.MathUtils
;
...
...
@@ -771,8 +771,7 @@ public abstract class Value {
case
BLOB:
{
switch
(
getType
())
{
case
BYTES:
return
LobStorageBackend
.
createSmallLob
(
Value
.
BLOB
,
getBytesNoCopy
());
return
LobStorageFrontend
.
createSmallLob
(
Value
.
BLOB
,
getBytesNoCopy
());
}
break
;
}
...
...
@@ -835,9 +834,9 @@ public abstract class Value {
case
FLOAT:
return
ValueFloat
.
get
(
Float
.
parseFloat
(
s
.
trim
()));
case
CLOB:
return
LobStorage
Back
end
.
createSmallLob
(
CLOB
,
s
.
getBytes
(
Constants
.
UTF8
));
return
LobStorage
Front
end
.
createSmallLob
(
CLOB
,
s
.
getBytes
(
Constants
.
UTF8
));
case
BLOB:
return
LobStorage
Back
end
.
createSmallLob
(
BLOB
,
StringUtils
.
convertHexToBytes
(
s
.
trim
()));
return
LobStorage
Front
end
.
createSmallLob
(
BLOB
,
StringUtils
.
convertHexToBytes
(
s
.
trim
()));
case
ARRAY:
return
ValueArray
.
get
(
new
Value
[]{
ValueString
.
get
(
s
)});
case
RESULT_SET:
{
...
...
@@ -969,11 +968,11 @@ public abstract class Value {
* Link a large value to a given table. For values that are kept fully in
* memory this method has no effect.
*
* @param
database the database
* @param
handler the data handler
* @param tableId the table to link to
* @return the new value or itself
*/
public
Value
link
(
Data
base
database
,
int
tableId
)
{
public
Value
link
(
Data
Handler
handler
,
int
tableId
)
{
return
this
;
}
...
...
@@ -990,8 +989,10 @@ public abstract class Value {
/**
* Mark any underlying resource as 'not linked to any table'. For values
* that are kept fully in memory this method has no effect.
*
* @param handler the data handler
*/
public
void
unlink
(
Data
base
database
)
{
public
void
unlink
(
Data
Handler
handler
)
{
// nothing to do
}
...
...
h2/src/main/org/h2/value/ValueLob.java
浏览文件 @
dfd26da7
...
...
@@ -14,9 +14,9 @@ import java.io.InputStream;
import
java.io.Reader
;
import
java.sql.PreparedStatement
;
import
java.sql.SQLException
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Database
;
import
org.h2.message.DbException
;
import
org.h2.mvstore.DataUtils
;
import
org.h2.store.DataHandler
;
...
...
@@ -237,7 +237,7 @@ public class ValueLob extends Value {
}
}
p
rivate
static
String
getFileNamePrefix
(
String
path
,
int
objectId
)
{
p
ublic
static
String
getFileNamePrefix
(
String
path
,
int
objectId
)
{
String
name
;
int
f
=
objectId
%
SysProperties
.
LOB_FILES_PER_DIRECTORY
;
if
(
f
>
0
)
{
...
...
@@ -498,6 +498,7 @@ public class ValueLob extends Value {
}
}
@Override
public
Value
link
(
DataHandler
h
,
int
tabId
)
{
if
(
fileName
==
null
)
{
this
.
tableId
=
tabId
;
...
...
@@ -741,29 +742,6 @@ public class ValueLob extends Value {
}
}
/**
* Remove all lobs for a given table id.
*
* @param database the database
* @param tableId the table id
*/
public
static
void
removeAllForTable
(
Database
database
,
int
tableId
)
{
String
dir
=
getFileNamePrefix
(
database
.
getDatabasePath
(),
0
);
removeAllForTable
(
database
,
dir
,
tableId
);
}
private
static
void
removeAllForTable
(
Database
database
,
String
dir
,
int
tableId
)
{
for
(
String
name
:
FileUtils
.
newDirectoryStream
(
dir
))
{
if
(
FileUtils
.
isDirectory
(
name
))
{
removeAllForTable
(
database
,
name
,
tableId
);
}
else
{
if
(
name
.
endsWith
(
".t"
+
tableId
+
Constants
.
SUFFIX_LOB_FILE
))
{
deleteFile
(
database
,
name
);
}
}
}
}
/**
* Check if this lob value is compressed.
*
...
...
@@ -773,7 +751,7 @@ public class ValueLob extends Value {
return
compression
;
}
p
rivate
static
synchronized
void
deleteFile
(
DataHandler
handler
,
String
fileName
)
{
p
ublic
static
synchronized
void
deleteFile
(
DataHandler
handler
,
String
fileName
)
{
// synchronize on the database, to avoid concurrent temp file creation /
// deletion / backup
synchronized
(
handler
.
getLobSyncObject
())
{
...
...
@@ -805,6 +783,29 @@ public class ValueLob extends Value {
}
return
140
;
}
/**
* Remove all lobs for a given table id.
*
* @param handler the data handler
* @param tableId the table id
*/
public
static
void
removeAllForTable
(
DataHandler
handler
,
int
tableId
)
{
String
dir
=
ValueLob
.
getFileNamePrefix
(
handler
.
getDatabasePath
(),
0
);
removeAllForTable
(
handler
,
dir
,
tableId
);
}
private
static
void
removeAllForTable
(
DataHandler
handler
,
String
dir
,
int
tableId
)
{
for
(
String
name
:
FileUtils
.
newDirectoryStream
(
dir
))
{
if
(
FileUtils
.
isDirectory
(
name
))
{
removeAllForTable
(
handler
,
name
,
tableId
);
}
else
{
if
(
name
.
endsWith
(
".t"
+
tableId
+
Constants
.
SUFFIX_LOB_FILE
))
{
ValueLob
.
deleteFile
(
handler
,
name
);
}
}
}
}
/**
* Create an independent copy of this temporary value.
...
...
h2/src/main/org/h2/value/ValueLobDb.java
浏览文件 @
dfd26da7
...
...
@@ -13,16 +13,16 @@ import java.io.InputStream;
import
java.io.Reader
;
import
java.sql.PreparedStatement
;
import
java.sql.SQLException
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Database
;
import
org.h2.message.DbException
;
import
org.h2.mvstore.DataUtils
;
import
org.h2.store.DataHandler
;
import
org.h2.store.FileStore
;
import
org.h2.store.FileStoreInputStream
;
import
org.h2.store.FileStoreOutputStream
;
import
org.h2.store.LobStorage
Back
end
;
import
org.h2.store.LobStorage
Front
end
;
import
org.h2.store.LobStorageInterface
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.util.IOUtils
;
...
...
@@ -111,14 +111,14 @@ public class ValueLobDb extends Value implements Value.ValueClob, Value.ValueBlo
Value
copy
=
lobStorage
.
createClob
(
getReader
(),
-
1
);
return
copy
;
}
else
if
(
small
!=
null
)
{
return
LobStorage
Back
end
.
createSmallLob
(
t
,
small
);
return
LobStorage
Front
end
.
createSmallLob
(
t
,
small
);
}
}
else
if
(
t
==
Value
.
BLOB
)
{
if
(
lobStorage
!=
null
)
{
Value
copy
=
lobStorage
.
createBlob
(
getInputStream
(),
-
1
);
return
copy
;
}
else
if
(
small
!=
null
)
{
return
LobStorage
Back
end
.
createSmallLob
(
t
,
small
);
return
LobStorage
Front
end
.
createSmallLob
(
t
,
small
);
}
}
return
super
.
convertTo
(
t
);
...
...
@@ -126,7 +126,7 @@ public class ValueLobDb extends Value implements Value.ValueClob, Value.ValueBlo
@Override
public
boolean
isLinked
()
{
return
tableId
!=
LobStorage
Back
end
.
TABLE_ID_SESSION_VARIABLE
&&
small
==
null
;
return
tableId
!=
LobStorage
Front
end
.
TABLE_ID_SESSION_VARIABLE
&&
small
==
null
;
}
public
boolean
isStored
()
{
...
...
@@ -152,31 +152,31 @@ public class ValueLobDb extends Value implements Value.ValueClob, Value.ValueBlo
}
@Override
public
void
unlink
(
Data
base
database
)
{
if
(
small
==
null
&&
tableId
!=
LobStorage
Back
end
.
TABLE_ID_SESSION_VARIABLE
)
{
database
.
getLobStorage
().
setTable
(
lobId
,
LobStorage
Back
end
.
TABLE_ID_SESSION_VARIABLE
);
tableId
=
LobStorage
Back
end
.
TABLE_ID_SESSION_VARIABLE
;
public
void
unlink
(
Data
Handler
database
)
{
if
(
small
==
null
&&
tableId
!=
LobStorage
Front
end
.
TABLE_ID_SESSION_VARIABLE
)
{
database
.
getLobStorage
().
setTable
(
lobId
,
LobStorage
Front
end
.
TABLE_ID_SESSION_VARIABLE
);
tableId
=
LobStorage
Front
end
.
TABLE_ID_SESSION_VARIABLE
;
}
}
@Override
public
Value
link
(
Data
base
database
,
int
tabId
)
{
public
Value
link
(
Data
Handler
database
,
int
tabId
)
{
if
(
small
==
null
)
{
if
(
tableId
==
LobStorage
Back
end
.
TABLE_TEMP
)
{
if
(
tableId
==
LobStorage
Front
end
.
TABLE_TEMP
)
{
database
.
getLobStorage
().
setTable
(
lobId
,
tabId
);
this
.
tableId
=
tabId
;
}
else
{
return
lobStorage
.
copyLob
(
type
,
lobId
,
tabId
,
getPrecision
());
}
}
else
if
(
small
.
length
>
database
.
getMaxLengthInplaceLob
())
{
LobStorageInterface
s
=
database
.
getLobStorage
();
}
else
if
(
small
.
length
>
handler
.
getMaxLengthInplaceLob
())
{
LobStorageInterface
s
=
handler
.
getLobStorage
();
Value
v
;
if
(
type
==
Value
.
BLOB
)
{
v
=
s
.
createBlob
(
getInputStream
(),
getPrecision
());
}
else
{
v
=
s
.
createClob
(
getReader
(),
getPrecision
());
}
return
v
.
link
(
database
,
tabId
);
return
v
.
link
(
handler
,
tabId
);
}
return
this
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论