Codota Logo
JobLogTable.setConnectionName
Code IndexAdd Codota to your IDE (free)

How to use
setConnectionName
method
in
org.pentaho.di.core.logging.JobLogTable

Best Java code snippets using org.pentaho.di.core.logging.JobLogTable.setConnectionName (Showing top 4 results out of 315)

  • Common ways to obtain JobLogTable
private void myMethod () {
JobLogTable j =
  • Codota IconJobMeta jobMeta;jobMeta.getJobLogTable()
  • Smart code suggestions by Codota
}
origin: pentaho/pentaho-kettle

private void getJobLogTableOptions( JobLogTable jobLogTable ) {
 // The connection...
 //
 jobLogTable.setConnectionName( wLogconnection.getText() );
 jobLogTable.setSchemaName( wLogSchema.getText() );
 jobLogTable.setTableName( wLogTable.getText() );
 jobLogTable.setLogInterval( wLogInterval.getText() );
 jobLogTable.setLogSizeLimit( wLogSizeLimit.getText() );
 jobLogTable.setTimeoutInDays( wLogTimeout.getText() );
 for ( int i = 0; i < jobLogTable.getFields().size(); i++ ) {
  TableItem item = wOptionFields.table.getItem( i );
  LogTableField field = jobLogTable.getFields().get( i );
  field.setEnabled( item.getChecked() );
  field.setFieldName( item.getText( 1 ) );
 }
}
origin: pentaho/pentaho-kettle

String id = rootNode.getProperty( PROP_DATABASE_LOG ).getRef().getId().toString();
DatabaseMeta conn = ( DatabaseMeta.findDatabase( jobMeta.getDatabases(), new StringObjectId( id ) ) );
jobMeta.getJobLogTable().setConnectionName( conn.getName() );
origin: pentaho/pentaho-kettle

jobLogTable.setConnectionName( XMLHandler.getTagValue( jobnode, "logconnection" ) );
jobLogTable.setTableName( XMLHandler.getTagValue( jobnode, "logtable" ) );
jobLogTable.setBatchIdUsed( "Y".equalsIgnoreCase( XMLHandler.getTagValue( jobnode, "use_batchid" ) ) );
origin: pentaho/pentaho-kettle

jobMeta.getJobLogTable().setConnectionName( logDb.getName() );
org.pentaho.di.core.loggingJobLogTablesetConnectionName

Popular methods of JobLogTable

  • getLogSizeLimit
  • setLogSizeLimit
  • getDatabaseMeta
  • getLogInterval
    Get the logging interval in seconds. Disabled if the logging interval is
  • getTableName
  • setTableName
  • getDefault
  • isBatchIdUsed
  • isLogFieldUsed
  • setAllGlobalParametersToNull
  • setBatchIdUsed
  • setLogFieldUsed
  • setBatchIdUsed,
  • setLogFieldUsed,
  • setLogInterval,
  • <init>,
  • clone,
  • findField,
  • getActualSchemaName,
  • getActualTableName,
  • getFields

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • compareTo (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JPanel (javax.swing)
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