Codota Logo
JobEntryColumnsExist.getDatabase
Code IndexAdd Codota to your IDE (free)

How to use
getDatabase
method
in
org.pentaho.di.job.entries.columnsexist.JobEntryColumnsExist

Best Java code snippets using org.pentaho.di.job.entries.columnsexist.JobEntryColumnsExist.getDatabase (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: pentaho/pentaho-kettle

/**
 * Copy information from the meta-data input to the dialog fields.
 */
public void getData() {
 if ( jobEntry.getName() != null ) {
  wName.setText( jobEntry.getName() );
 }
 if ( jobEntry.getTablename() != null ) {
  wTablename.setText( jobEntry.getTablename() );
 }
 if ( jobEntry.getSchemaname() != null ) {
  wSchemaname.setText( jobEntry.getSchemaname() );
 }
 if ( jobEntry.getDatabase() != null ) {
  wConnection.setText( jobEntry.getDatabase().getName() );
 }
 if ( jobEntry.getArguments() != null ) {
  for ( int i = 0; i < jobEntry.getArguments().length; i++ ) {
   TableItem ti = wFields.table.getItem( i );
   if ( jobEntry.getArguments()[i] != null ) {
    ti.setText( 1, jobEntry.getArguments()[i] );
   }
  }
  wFields.setRowNums();
  wFields.optWidth( true );
 }
 wName.selectAll();
 wName.setFocus();
}
origin: pentaho/pentaho-kettle

if ( jobEntry.getDatabase() == null && jobMeta.nrDatabases() == 1 ) {
 wConnection.select( 0 );
org.pentaho.di.job.entries.columnsexistJobEntryColumnsExistgetDatabase

Popular methods of JobEntryColumnsExist

  • getNewDatabaseFromMeta
  • setArguments
  • setDatabase
  • setSchemaname
  • setTablename
  • <init>
  • allocate
  • environmentSubstitute
  • execute
  • getArguments
  • getName
  • getObjectId
  • getName,
  • getObjectId,
  • getSchemaname,
  • getTablename,
  • hasChanged,
  • logDetailed,
  • logError,
  • setChanged,
  • setName

Popular in Java

  • Creating JSON documents from java classes using gson
  • compareTo (BigDecimal)
  • setContentView (Activity)
  • getContentResolver (Context)
  • InetAddress (java.net)
    This class represents an Internet Protocol (IP) address. An IP address is either a 32-bit or 128-bit
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • DataSource (javax.sql)
    A factory for connections to the physical data source that this DataSource object represents. An alt
  • JButton (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now