本文整理汇总了Java中org.pentaho.di.core.database.DatabaseMeta.getAccessType方法的典型用法代码示例。如果您正苦于以下问题:Java DatabaseMeta.getAccessType方法的具体用法?Java DatabaseMeta.getAccessType怎么用?Java DatabaseMeta.getAccessType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.pentaho.di.core.database.DatabaseMeta
的用法示例。
在下文中一共展示了DatabaseMeta.getAccessType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: explore
import org.pentaho.di.core.database.DatabaseMeta; //导入方法依赖的package包/类
public void explore() {
Shell parent = getShell();
DatabaseMeta dbinfo = new DatabaseMeta();
getInfo(dbinfo);
try {
if (dbinfo.getAccessType() != DatabaseMeta.TYPE_ACCESS_PLUGIN) {
DatabaseExplorerDialog ded = new DatabaseExplorerDialog(parent, SWT.NONE, dbinfo, databases, true);
ded.open();
} else {
MessageBox mb = new MessageBox(parent, SWT.OK | SWT.ICON_INFORMATION);
mb.setText(Messages.getString("DatabaseDialog.ExplorerNotImplemented.Title")); //$NON-NLS-1$
mb.setMessage(Messages.getString("DatabaseDialog.ExplorerNotImplemented.Message")); //$NON-NLS-1$
mb.open();
}
} catch (Exception e) {
new ErrorDialog( parent, Messages.getString("DatabaseDialog.ErrorParameters.title"), Messages.getString("DatabaseDialog.ErrorParameters.description"), e); //$NON-NLS-1$ //$NON-NLS-2$
}
}
示例2: explore
import org.pentaho.di.core.database.DatabaseMeta; //导入方法依赖的package包/类
public void explore()
{
DatabaseMeta dbinfo = new DatabaseMeta();
try
{
getInfo(dbinfo);
if (dbinfo.getAccessType()!=DatabaseMeta.TYPE_ACCESS_PLUGIN)
{
DatabaseExplorerDialog ded = new DatabaseExplorerDialog(shell, SWT.NONE, dbinfo, databases, true);
ded.open();
}
else
{
MessageBox mb = new MessageBox(shell, SWT.OK | SWT.ICON_INFORMATION);
mb.setText(Messages.getString("DatabaseDialog.ExplorerNotImplemented.Title")); //$NON-NLS-1$
mb.setMessage(Messages.getString("DatabaseDialog.ExplorerNotImplemented.Message")); //$NON-NLS-1$
mb.open();
}
}
catch (KettleException e)
{
new ErrorDialog(shell, Messages.getString("DatabaseDialog.ErrorParameters.title"), Messages.getString("DatabaseDialog.ErrorParameters.description"), e); //$NON-NLS-1$ //$NON-NLS-2$
}
}
示例3: explore
import org.pentaho.di.core.database.DatabaseMeta; //导入方法依赖的package包/类
public void explore() {
Shell parent = getShell();
DatabaseMeta dbinfo = new DatabaseMeta();
getInfo(dbinfo);
try {
if (dbinfo.getAccessType() != DatabaseMeta.TYPE_ACCESS_PLUGIN) {
DatabaseExplorerDialog ded = new DatabaseExplorerDialog(parent, SWT.NONE, dbinfo, databases, true);
ded.open();
} else {
MessageBox mb = new MessageBox(parent, SWT.OK | SWT.ICON_INFORMATION);
mb.setText(BaseMessages.getString(PKG, "DatabaseDialog.ExplorerNotImplemented.Title")); //$NON-NLS-1$
mb.setMessage(BaseMessages.getString(PKG, "DatabaseDialog.ExplorerNotImplemented.Message")); //$NON-NLS-1$
mb.open();
}
} catch (Exception e) {
new ErrorDialog( parent, BaseMessages.getString(PKG, "DatabaseDialog.ErrorParameters.title"), BaseMessages.getString(PKG, "DatabaseDialog.ErrorParameters.description"), e); //$NON-NLS-1$ //$NON-NLS-2$
}
}