Tabnine Logo
Field.getColumnName
Code IndexAdd Tabnine to your IDE (free)

How to use
getColumnName
method
in
org.postgresql.core.Field

Best Java code snippets using org.postgresql.core.Field.getColumnName (Showing top 5 results out of 315)

origin: postgresql/postgresql

public String getBaseColumnName(int column) throws SQLException {
  fetchFieldMetaData();
  Field field = getField(column);
  return field.getColumnName();
}
origin: org.ancoron.postgresql/org.postgresql.osgi

public String getBaseColumnName(int column) throws SQLException {
  Field field = getField(column);
  return field.getColumnName(connection);
}
origin: org.ancoron.postgresql/org.postgresql

public String getBaseColumnName(int column) throws SQLException {
  fetchFieldMetaData();
  Field field = getField(column);
  return field.getColumnName();
}
origin: org.ancoron.postgresql/org.postgresql.osgi

selectSQL.append( fields[i].getColumnName(connection) );
origin: org.ancoron.postgresql/org.postgresql.osgi

protected void updateValue(int columnIndex, Object value) throws SQLException {
  checkUpdateable();
  if (!onInsertRow && (isBeforeFirst() || isAfterLast() || rows.size() == 0))
  {
    throw new PSQLException(GT.tr("Cannot update the ResultSet because it is either before the start or after the end of the results."),
                PSQLState.INVALID_CURSOR_STATE);
  }
  checkColumnIndex(columnIndex);
  doingUpdates = !onInsertRow;
  if (value == null)
    updateNull(columnIndex);
  else
    updateValues.put(fields[columnIndex - 1].getColumnName(connection), value);
}
org.postgresql.coreFieldgetColumnName

Popular methods of Field

  • <init>
  • getColumnLabel
  • getFormat
  • getMod
  • getOID
  • getTableOid
  • setFormat
  • getAutoIncrement
  • getNullable
  • getPositionInTable
  • getSchemaName
  • getTableName
  • getSchemaName,
  • getTableName,
  • setAutoIncrement,
  • setColumnName,
  • setNullable,
  • setSchemaName,
  • setTableName,
  • getLength,
  • getMetadata

Popular in Java

  • Updating database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • runOnUiThread (Activity)
  • startActivity (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top plugins for WebStorm
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