org.pentaho.di.compatibility.Row.add(Object) |
org.pentaho.di.core.encryption.Encr.buildSignature(String, String, String, String) |
org.pentaho.di.core.encryption.Encr.checkSignatureShort(String, String) |
org.pentaho.di.core.database.Database.clearInsertBatch() |
org.pentaho.di.compatibility.Row.get(int) |
org.pentaho.di.core.database.BaseDatabaseMeta.getBackwardsCompatibleSchemaTableCombination(String, String)
we should phase this out in 5.0, but it's there to keep backwards compatibility in the 4.x releases.
|
org.pentaho.di.core.database.BaseDatabaseMeta.getBackwardsCompatibleTable(String)
we should phase this out in 5.0, but it's there to keep backwards compatibility in the 4.x releases.
|
org.pentaho.di.core.jdbc.RowsResultSet.getBigDecimal(int, int) |
org.pentaho.di.core.jdbc.ThinResultSet.getBigDecimal(int, int) |
org.pentaho.di.core.jdbc.RowsResultSet.getBigDecimal(String, int) |
org.pentaho.di.core.jdbc.ThinResultSet.getBigDecimal(String, int) |
org.pentaho.di.core.row.value.ValueMetaBase.getConversionMask() |
org.pentaho.di.core.database.DatabaseMeta.getDatabaseTypeDesc()
This is actually the plugin ID
|
org.pentaho.di.core.vfs.KettleVFS.getFileInputStream(FileObject)
because of API change in Apache VFS. As a workaround use FileObject.getName().getPathDecoded(); Then
use a regular File() object to create a File Input stream.
|
org.pentaho.di.core.database.DatabaseMeta.getSchemaTableCombination(String, String)
please use getQuotedSchemaTableCombination()
|
org.pentaho.di.core.encryption.Encr.getSignatureShort(String) |
org.pentaho.di.core.jdbc.RowsResultSet.getString(int) |
org.pentaho.di.core.jdbc.RowsResultSet.getUnicodeStream(int) |
org.pentaho.di.core.jdbc.ThinResultSet.getUnicodeStream(int) |
org.pentaho.di.core.jdbc.RowsResultSet.getUnicodeStream(String) |
org.pentaho.di.core.jdbc.ThinResultSet.getUnicodeStream(String) |
org.pentaho.di.core.encryption.Encr.init() |
org.pentaho.di.core.database.Database.insertFinished(PreparedStatement, boolean)
use emptyAndCommit() instead (pass in the number of rows left in the batch)
|
org.pentaho.di.core.row.ValueDataUtil.isSpace(char)
|
org.pentaho.di.core.row.ValueDataUtil.leftTrim(String)
|
org.pentaho.di.core.row.RowMetaInterface.oldXORHashCode(Object[]) |
org.pentaho.di.core.row.RowMeta.oldXORHashCode(Object[]) |
org.pentaho.di.compatibility.Row.remove(int) |
org.pentaho.di.core.Const.replEnv(String)
use StringUtil.environmentSubstitute(): handles both Windows and unix conventions
|
org.pentaho.di.core.Const.replEnv(String[])
please use StringUtil.environmentSubstitute now.
|
org.pentaho.di.core.row.ValueDataUtil.rightTrim(String)
|
org.pentaho.di.core.row.ValueMeta.setType(int) |
org.pentaho.di.core.row.ValueMetaInterface.setType(int)
This method is deprecated. The same code is still used underneath.
|
org.pentaho.di.core.row.value.ValueMetaBase.setType(int) |
org.pentaho.di.core.jdbc.ThinPreparedStatement.setUnicodeStream(int, InputStream, int) |
org.pentaho.di.core.database.DatabaseMeta.supportsTransactions()
because the same database can support transactions or not. It all depends on the database setup.
Therefor, we look at the database metadata DatabaseMetaData.supportsTransactions() in stead of this.
|
org.pentaho.di.core.row.ValueDataUtil.trim(String)
|
org.pentaho.di.core.jdbc.RowsResultSet.updateNull(int) |