Tabnine Logo
ISqlJetCursor.getRowValues
Code IndexAdd Tabnine to your IDE (free)

How to use
getRowValues
method
in
org.tmatesoft.sqljet.core.table.ISqlJetCursor

Best Java code snippets using org.tmatesoft.sqljet.core.table.ISqlJetCursor.getRowValues (Showing top 2 results out of 315)

origin: org.tmatesoft.sqljet/sqljet

  public Object[] getRowValues() throws SqlJetException {
    return cursor.getRowValues();
  }
}
origin: org.tmatesoft.svnkit/svnkit

public Map<String, Object> getRowValues2(Map<String, Object> v) throws SVNException {
  v = v == null ? new HashMap<String, Object>() : v;
  try {
    final List<ISqlJetColumnDef> columns = getTable().getDefinition().getColumns();
    final Object[] rValues = getCursor().getRowValues();
    final Object[] values;
    if (rValues.length < columns.size()) {
      values = new Object[columns.size()];
      System.arraycopy(rValues, 0, values, 0, rValues.length);
    } else {
      values = rValues;
    }
    for (int i = 0; i < values.length; i++) {
      v.put(columns.get(i).getName(), values[i]);
    }
    return v;
  } catch (SqlJetException e) {
    SVNSqlJetDb.createSqlJetError(e);
    return null;
  }
}
org.tmatesoft.sqljet.core.tableISqlJetCursorgetRowValues

Javadoc

Returns all field values of current row.

Popular methods of ISqlJetCursor

  • close
    Closes the cursor.
  • eof
    Tests whether this cursor is positioned behind the last record.
  • getString
    Returns specified field's value as String.
  • isNull
    Tests field value for null.
  • getInteger
    Returns specified field's value as integer.
  • delete
    Deletes the current record.
  • getFieldsCount
    Returns number of fields in the current record.
  • next
    Goes to the next record.
  • getBlobAsArray
    Returns specified field's value as BLOB.
  • updateByFieldNames
    Updates the current record.
  • getBoolean
    Returns specified field's value as boolean.
  • getFieldType
    Returns field type.
  • getBoolean,
  • getFieldType,
  • getRowCount,
  • getValue,
  • setLimit,
  • update,
  • first,
  • getBlobAsStream,
  • getFloat

Popular in Java

  • Running tasks concurrently on multiple threads
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSystemService (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Kernel (java.awt.image)
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Best IntelliJ plugins
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