📄 e274. determining if a result set is updatable.txt
字号:
See also e273 Creating an Updatable Result Set.
try {
// Get concurrency of the result set
int concurrency = resultSet.getConcurrency();
if (concurrency == ResultSet.CONCUR_UPDATABLE) {
// Result set is updatable
} else {
// Result set is not updatable
}
} catch (SQLException e) {
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -