Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
2a754e01
提交
2a754e01
authored
9月 17, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Temporary linked tables are now supported.
上级
1302b53b
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
53 行增加
和
3 行删除
+53
-3
CreateLinkedTable.java
h2/src/main/org/h2/command/ddl/CreateLinkedTable.java
+23
-1
TableLink.java
h2/src/main/org/h2/table/TableLink.java
+30
-2
没有找到文件。
h2/src/main/org/h2/command/ddl/CreateLinkedTable.java
浏览文件 @
2a754e01
...
...
@@ -27,6 +27,9 @@ public class CreateLinkedTable extends SchemaCommand {
private
String
comment
;
private
boolean
emitUpdates
;
private
boolean
force
;
private
boolean
temporary
;
private
boolean
globalTemporary
;
private
boolean
readOnly
;
public
CreateLinkedTable
(
Session
session
,
Schema
schema
)
{
super
(
session
,
schema
);
...
...
@@ -73,8 +76,15 @@ public class CreateLinkedTable extends SchemaCommand {
}
int
id
=
getObjectId
(
false
,
true
);
TableLink
table
=
getSchema
().
createTableLink
(
id
,
tableName
,
driver
,
url
,
user
,
password
,
originalTable
,
emitUpdates
,
force
);
table
.
setTemporary
(
temporary
);
table
.
setGlobalTemporary
(
globalTemporary
);
table
.
setComment
(
comment
);
db
.
addSchemaObject
(
session
,
table
);
table
.
setReadOnly
(
readOnly
);
if
(
temporary
&&
!
globalTemporary
)
{
session
.
addLocalTempTable
(
table
);
}
else
{
db
.
addSchemaObject
(
session
,
table
);
}
return
0
;
}
...
...
@@ -90,4 +100,16 @@ public class CreateLinkedTable extends SchemaCommand {
this
.
force
=
force
;
}
public
void
setTemporary
(
boolean
temp
)
{
this
.
temporary
=
temp
;
}
public
void
setGlobalTemporary
(
boolean
globalTemp
)
{
this
.
globalTemporary
=
globalTemp
;
}
public
void
setReadOnly
(
boolean
readOnly
)
{
this
.
readOnly
=
readOnly
;
}
}
h2/src/main/org/h2/table/TableLink.java
浏览文件 @
2a754e01
...
...
@@ -49,7 +49,8 @@ public class TableLink extends Table {
private
boolean
storesLowerCase
;
private
boolean
storesMixedCase
;
private
boolean
supportsMixedCaseIdentifiers
;
private
boolean
globalTemporary
;
private
boolean
readOnly
;
public
TableLink
(
Schema
schema
,
int
id
,
String
name
,
String
driver
,
String
url
,
String
user
,
String
password
,
String
originalTable
,
boolean
emitUpdates
,
boolean
force
)
throws
SQLException
{
...
...
@@ -240,7 +241,14 @@ public class TableLink extends Table {
public
String
getCreateSQL
()
{
StringBuffer
buff
=
new
StringBuffer
();
buff
.
append
(
"CREATE FORCE LINKED TABLE "
);
buff
.
append
(
"CREATE FORCE "
);
if
(
getTemporary
())
{
if
(
globalTemporary
)
{
buff
.
append
(
"GLOBAL "
);
}
buff
.
append
(
"TEMP "
);
}
buff
.
append
(
"LINKED TABLE "
);
buff
.
append
(
getSQL
());
if
(
comment
!=
null
)
{
buff
.
append
(
" COMMENT "
);
...
...
@@ -260,6 +268,9 @@ public class TableLink extends Table {
if
(
emitUpdates
)
{
buff
.
append
(
" EMIT UPDATES"
);
}
if
(
readOnly
)
{
buff
.
append
(
" READONLY"
);
}
return
buff
.
toString
();
}
...
...
@@ -279,12 +290,20 @@ public class TableLink extends Table {
public
Index
getScanIndex
(
Session
session
)
{
return
linkedIndex
;
}
private
void
checkReadOnly
()
throws
SQLException
{
if
(
readOnly
)
{
throw
Message
.
getSQLException
(
ErrorCode
.
DATABASE_IS_READ_ONLY
);
}
}
public
void
removeRow
(
Session
session
,
Row
row
)
throws
SQLException
{
checkReadOnly
();
getScanIndex
(
session
).
remove
(
session
,
row
);
}
public
void
addRow
(
Session
session
,
Row
row
)
throws
SQLException
{
checkReadOnly
();
getScanIndex
(
session
).
add
(
session
,
row
);
}
...
...
@@ -395,6 +414,7 @@ public class TableLink extends Table {
public
void
updateRows
(
Prepared
prepared
,
Session
session
,
RowList
rows
)
throws
SQLException
{
boolean
deleteInsert
;
checkReadOnly
();
if
(
emitUpdates
)
{
for
(
rows
.
reset
();
rows
.
hasNext
();)
{
prepared
.
checkCancelled
();
...
...
@@ -413,4 +433,12 @@ public class TableLink extends Table {
}
}
public
void
setGlobalTemporary
(
boolean
globalTemporary
)
{
this
.
globalTemporary
=
globalTemporary
;
}
public
void
setReadOnly
(
boolean
readOnly
)
{
this
.
readOnly
=
readOnly
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论