Java Code Examples for org.jooq.Result#isNotEmpty()
The following examples show how to use
org.jooq.Result#isNotEmpty() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SecretContentDAO.java From keywhiz with Apache License 2.0 | 6 votes |
public Optional<ImmutableList<SecretContent>> getSecretVersionsBySecretId(long id, int versionIdx, int numVersions) { Result<SecretsContentRecord> r = dslContext.selectFrom(SECRETS_CONTENT) .where(SECRETS_CONTENT.SECRETID.eq(id)) .orderBy(SECRETS_CONTENT.CREATEDAT.desc()) .limit(versionIdx, numVersions) .fetch(); if (r != null && r.isNotEmpty()) { ImmutableList.Builder<SecretContent> b = new ImmutableList.Builder<>(); b.addAll(r.map(secretContentMapper)); return Optional.of(b.build()); } else { return Optional.empty(); } }
Example 2
Source File: CMSCrawler.java From oneops with Apache License 2.0 | 5 votes |
private void updateCrawlEntry(Environment env) { if (crawlerDbUserName == null || crawlerDbUrl == null || crawlerDbPassword == null) { return; } try (Connection conn = DriverManager.getConnection(crawlerDbUrl, crawlerDbUserName, crawlerDbPassword)) { DSLContext create = DSL.using(conn, SQLDialect.POSTGRES); Result<Record> records = create.select().from(CRAWL_ENTITIES) .where(CRAWL_ENTITIES.OO_ID.eq(env.getId())) .fetch(); if (records.isNotEmpty()) { create.update(CRAWL_ENTITIES) .set(CRAWL_ENTITIES.LAST_CRAWLED_AT, new Timestamp(System.currentTimeMillis())) .where(CRAWL_ENTITIES.OO_ID.eq(env.getId())) .execute(); } else { create.insertInto(CRAWL_ENTITIES) .set(CRAWL_ENTITIES.NS_PATH, env.getPath() + "/" + env.getName()) .set(CRAWL_ENTITIES.OO_ID, env.getId()) .execute(); } } catch (Exception e) { e.printStackTrace(); } }