Class BookToBookStoreDao

    • Constructor Detail

      • BookToBookStoreDao

        public BookToBookStoreDao()
        Create a new BookToBookStoreDao without any configuration
      • BookToBookStoreDao

        @Autowired
        public BookToBookStoreDao​(org.jooq.Configuration configuration)
        Create a new BookToBookStoreDao with an attached configuration
    • Method Detail

      • fetchRangeOfBookStoreName

        public List<BookToBookStore> fetchRangeOfBookStoreName​(String lowerInclusive,
                                                               String upperInclusive)
        Fetch records that have BOOK_STORE_NAME BETWEEN lowerInclusive AND upperInclusive
      • fetchByBookStoreName

        public List<BookToBookStore> fetchByBookStoreName​(String... values)
        Fetch records that have BOOK_STORE_NAME IN (values)
      • fetchRangeOfBookId

        public List<BookToBookStore> fetchRangeOfBookId​(Integer lowerInclusive,
                                                        Integer upperInclusive)
        Fetch records that have BOOK_ID BETWEEN lowerInclusive AND upperInclusive
      • fetchRangeOfStock

        public List<BookToBookStore> fetchRangeOfStock​(Integer lowerInclusive,
                                                       Integer upperInclusive)
        Fetch records that have STOCK BETWEEN lowerInclusive AND upperInclusive