congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
JobLogTable.setConnectionName
Code IndexAdd Tabnine 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)

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

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • getContentResolver (Context)
  • Menu (java.awt)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now