Class DBTable


  • public class DBTable
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      DBTable()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void dbDelete​(java.lang.String whereStr)
      Corresponds to ESL action DB_DELETE
      void dbDelete​(D2SRow row)
      Corresponds to ESL action DB_DELETE
      void dbDisconnect()
      Corresponds to ESL action DB_DISCONNECT
      void dbInsert​(D2SD structIdent)
      Corresponds to ESL action DB_INSERT
      void dbInsert​(D2SRow row)
      Corresponds to ESL action DB_INSERT
      DBReadResult dbRead​(D2SD localStructIdent, int maxRows_Int)
      Corresponds to ESL action DB_READ
      DBReadResult dbRead​(D2SD localStructIdent, int maxRows_Int, java.lang.String whereStr)
      Corresponds to ESL action DB_READ
      DBReadResult dbRead​(D2SRow row)
      Corresponds to ESL action DB_READ
      DBReadResult dbRead​(D2SRow row, java.lang.String whereStr)
      Corresponds to ESL action DB_READ
      void dbReadBlob​(java.lang.String blobColNameIdent_Str, java.io.OutputStream blobOutputStream, java.lang.String whereStr)
      Corresponds to ESL action DB_READ_BLOB
      void dbReadBlob​(java.lang.String blobColNameIdent_Str, java.io.OutputStream blobOutputStream, D2SRow row)
      Corresponds to ESL action DB_READ_BLOB
      void dbsInsertOrUpdate​(D2SRow row)
      Corresponds to ESL action DB_INSUPD
      void dbUpdate​(D2SRow row)
      Corresponds to ESL action DB_UPDATE
      void dbUpdate​(D2SRow row, java.lang.String whereStr)
      Corresponds to ESL action DB_UPDATE
      void dbUpdateBlob​(java.lang.String blobColNameIdent_Str, java.io.InputStream blobInputStream, java.lang.String whereStr)
      Corresponds to ESL action DB_UPDATE_BLOB
      void dbUpdateBlob​(java.lang.String blobColNameIdent_Str, java.io.InputStream blobInputStream, D2SRow row)
      Corresponds to ESL action DB_UPDATE_BLOB
      int getHandleIdent()
      Internal function
      int getStructTypId()
      Internal function
      int getTransId()
      Internal function
      void setTransId​(int transId)
      Internal function
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DBTable

        public DBTable()
    • Method Detail

      • getTransId

        public int getTransId()
        Internal function
        Returns:
      • setTransId

        public void setTransId​(int transId)
        Internal function
      • getHandleIdent

        public int getHandleIdent()
        Internal function
        Returns:
      • getStructTypId

        public int getStructTypId()
        Internal function
        Returns:
      • dbDisconnect

        public void dbDisconnect()
        Corresponds to ESL action DB_DISCONNECT
      • dbDelete

        public void dbDelete​(D2SRow row)
        Corresponds to ESL action DB_DELETE
        Parameters:
        row -
      • dbDelete

        public void dbDelete​(java.lang.String whereStr)
        Corresponds to ESL action DB_DELETE
        Parameters:
        whereStr -
      • dbInsert

        public void dbInsert​(D2SRow row)
        Corresponds to ESL action DB_INSERT
        Parameters:
        row -
      • dbInsert

        public void dbInsert​(D2SD structIdent)
        Corresponds to ESL action DB_INSERT
        Parameters:
        structIdent -
      • dbsInsertOrUpdate

        public void dbsInsertOrUpdate​(D2SRow row)
        Corresponds to ESL action DB_INSUPD
        Parameters:
        row -
      • dbRead

        public DBReadResult dbRead​(D2SRow row)
        Corresponds to ESL action DB_READ
        Parameters:
        row -
      • dbRead

        public DBReadResult dbRead​(D2SRow row,
                                   java.lang.String whereStr)
        Corresponds to ESL action DB_READ
        Parameters:
        row -
        whereStr -
      • dbRead

        public DBReadResult dbRead​(D2SD localStructIdent,
                                   int maxRows_Int)
        Corresponds to ESL action DB_READ
        Parameters:
        localStructIdent -
        maxRows_Int -
      • dbRead

        public DBReadResult dbRead​(D2SD localStructIdent,
                                   int maxRows_Int,
                                   java.lang.String whereStr)
        Corresponds to ESL action DB_READ
        Parameters:
        localStructIdent -
        maxRows_Int -
        whereStr -
      • dbReadBlob

        public void dbReadBlob​(java.lang.String blobColNameIdent_Str,
                               java.io.OutputStream blobOutputStream,
                               D2SRow row)
                        throws ExceptionDBNoData
        Corresponds to ESL action DB_READ_BLOB
        Parameters:
        blobColNameIdent_Str -
        blobOutputStream -
        row -
        Throws:
        ExceptionDBNoData
      • dbReadBlob

        public void dbReadBlob​(java.lang.String blobColNameIdent_Str,
                               java.io.OutputStream blobOutputStream,
                               java.lang.String whereStr)
        Corresponds to ESL action DB_READ_BLOB
        Parameters:
        blobColNameIdent_Str -
        blobOutputStream -
        whereStr -
      • dbUpdate

        public void dbUpdate​(D2SRow row)
        Corresponds to ESL action DB_UPDATE
        Parameters:
        row -
      • dbUpdate

        public void dbUpdate​(D2SRow row,
                             java.lang.String whereStr)
        Corresponds to ESL action DB_UPDATE
        Parameters:
        row -
        whereStr -
      • dbUpdateBlob

        public void dbUpdateBlob​(java.lang.String blobColNameIdent_Str,
                                 java.io.InputStream blobInputStream,
                                 D2SRow row)
        Corresponds to ESL action DB_UPDATE_BLOB
        Parameters:
        blobColNameIdent_Str -
        blobInputStream -
        row -
      • dbUpdateBlob

        public void dbUpdateBlob​(java.lang.String blobColNameIdent_Str,
                                 java.io.InputStream blobInputStream,
                                 java.lang.String whereStr)
        Corresponds to ESL action DB_UPDATE_BLOB
        Parameters:
        blobColNameIdent_Str -
        blobInputStream -
        whereStr -