提交 c5a40e32 编写于 作者: J jurgen

Fetch all data action, product title fix

Former-commit-id: c85c82cc
上级 2ac82869
Custom SQL delimiter
Vertica keywords
Make IDataSourceProvider -> IDatabaseContextProvider
......
......@@ -141,7 +141,7 @@ public class DBeaverCore implements DBPApplication {
public static String getProductTitle()
{
return "DBeaver " + getVersion();
return Platform.getProduct().getName() + " " + getVersion();
}
public static IPreferenceStore getGlobalPreferenceStore()
......
......@@ -162,7 +162,7 @@ public abstract class JDBCTable<DATASOURCE extends DBPDataSource, CONTAINER exte
dbStat.setStatementSource(this);
if (dbStat instanceof JDBCStatement) {
if (dbStat instanceof JDBCStatement && maxRows > 0) {
try {
((JDBCStatement)dbStat).setFetchSize(
maxRows <= 0 ? DEFAULT_READ_FETCH_SIZE : (int)maxRows);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册