Class OpenBasePkGenerator

    • Constructor Detail

      • OpenBasePkGenerator

        public OpenBasePkGenerator()
        Deprecated.
        Used by DI
        Since:
        4.1
      • OpenBasePkGenerator

        protected OpenBasePkGenerator​(JdbcAdapter adapter)
        Deprecated.
    • Method Detail

      • longPkFromDatabase

        protected long longPkFromDatabase​(DataNode node,
                                          DbEntity entity)
                                   throws Exception
        Deprecated.
        Generates new (unique and non-repeating) primary key for specified DbEntity. Executed SQL looks like this:
          NEWID FOR Table Column
         

        COLUMN must be marked as UNIQUE in order for this to work properly.

        Overrides:
        longPkFromDatabase in class JdbcPkGenerator
        Throws:
        Exception
        Since:
        3.0
      • newIDString

        protected String newIDString​(DbEntity ent)
        Deprecated.
        Returns SQL string that can generate new (unique and non-repeating) primary key for specified DbEntity. No actual database operations are performed.
        Since:
        1.2
      • createAutoPk

        public void createAutoPk​(DataNode node,
                                 List<DbEntity> dbEntities)
                          throws Exception
        Deprecated.
        Description copied from interface: PkGenerator
        Generates necessary database objects to provide automatic primary key support.
        Specified by:
        createAutoPk in interface PkGenerator
        Overrides:
        createAutoPk in class JdbcPkGenerator
        Parameters:
        node - node that provides access to a DataSource.
        dbEntities - a list of entities that require primary key auto-generation support
        Throws:
        Exception
      • canCreatePK

        protected boolean canCreatePK​(DbEntity entity)
        Deprecated.
      • dropAutoPk

        public void dropAutoPk​(DataNode node,
                               List<DbEntity> dbEntities)
                        throws Exception
        Deprecated.
        Description copied from class: JdbcPkGenerator
        Drops table named "AUTO_PK_SUPPORT" if it exists in the database.
        Specified by:
        dropAutoPk in interface PkGenerator
        Overrides:
        dropAutoPk in class JdbcPkGenerator
        Parameters:
        node - node that provides access to a DataSource.
        dbEntities - a list of entities whose primary key auto-generation support should be dropped.
        Throws:
        Exception
      • createPKString

        protected String createPKString​(DbEntity entity)
        Deprecated.
        Returns a String to create PK support for an entity.
      • createUniquePKIndexString

        protected String createUniquePKIndexString​(DbEntity entity)
        Deprecated.
        Returns a String to create a unique index on table primary key columns per OpenBase recommendations.
      • reset

        public void reset()
        Deprecated.
        Description copied from interface: PkGenerator
        Resets any cached primary keys forcing generator to go to the database next time id generation is requested. May not be applicable for all generator implementations.
        Specified by:
        reset in interface PkGenerator
        Overrides:
        reset in class JdbcPkGenerator
      • getPkCacheSize

        public int getPkCacheSize()
        Deprecated.
        Returns zero, since PK caching is not feasible with OpenBase PK generation mechanism.
        Overrides:
        getPkCacheSize in class JdbcPkGenerator
      • setPkCacheSize

        public void setPkCacheSize​(int pkCacheSize)
        Deprecated.
        Description copied from class: JdbcPkGenerator
        Sets the size of the entity primary key cache. If pkCacheSize parameter is less than 1, cache size is set to "one".

        Note that our tests show that setting primary key cache value to anything much bigger than 20 does not give any significant performance increase. Therefore it does not make sense to use bigger values, since this may potentially create big gaps in the database primary key sequences in cases like application crashes or restarts.

        Overrides:
        setPkCacheSize in class JdbcPkGenerator