DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
Securing Your Software Supply Chain with JFrog and Azure
Register Today

Trending

  • Leveraging FastAPI for Building Secure and High-Performance Banking APIs
  • GitLab Pages Preview
  • Overcoming Challenges in UI/UX Application Modernization
  • Idempotent Liquibase Changesets

Trending

  • Leveraging FastAPI for Building Secure and High-Performance Banking APIs
  • GitLab Pages Preview
  • Overcoming Challenges in UI/UX Application Modernization
  • Idempotent Liquibase Changesets
  1. DZone
  2. Data Engineering
  3. Databases
  4. Determining if a Conditional Update was Applied with CQL Java-Driver

Determining if a Conditional Update was Applied with CQL Java-Driver

Brian O' Neill user avatar by
Brian O' Neill
·
Feb. 17, 14 · Interview
Like (0)
Save
Tweet
Share
6.03K Views

Join the DZone community and get the full member experience.

Join For Free

Sorry, I should have included this in my previous post on conditional updates.  One of the critical aspects to using conditional updates is determining whether the update was applied. Here is how you do it.

Given our previous update (all fluentized):

        
Update updateStatement = update(KEYSPACE_NAME, TABLE_NAME);
updateStatement.with(set(VALUE_NAME, 15)).where(eq(KEY_NAME, "DE")).onlyIf(eq(VALUE_NAME, 10));
this.executeAndAssert(updateStatement, "DE", 15);

When we execute the updateStatement with our session and examine the ResultSet returned:

LOG.debug("EXECUTING [{}]", statement.toString());
ResultSet results = clientFactory.getSession().execute(statement);
for (ColumnDefinitions.Definition definition : results.getColumnDefinitions().asList()) {
   for (Row row : results.all()) {
      LOG.debug("[{}]=[{}]", definition.getName(), row.getBool(definition.getName()));
   }
}

You'll notice that you get a ResultSet back that contains one row, with a column named "[applied]". The above code results in:

DEBUG EXECUTING [UPDATE mykeyspace.incrementaltable SET v=15 WHERE k='DE' IF v=10;]
DEBUG [[applied]]=[true]

Thus, to check to see if a conditional update is applied or not, you can use the concise code:

Row row = results.one();
if (row != null)
   LOG.debug("APPLIED?[{}]", row.getBool("[applied]"));

UPDATE: In Cassandra, there is a constant that you can use so you don't need to hardcode the "[applied]" column name. Instead use:

ModificationStatement.CAS_RESULT_COLUMN.text 



Column (database) POST (HTTP) Aspect (computer programming) Row (database)

Published at DZone with permission of Brian O' Neill, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Trending

  • Leveraging FastAPI for Building Secure and High-Performance Banking APIs
  • GitLab Pages Preview
  • Overcoming Challenges in UI/UX Application Modernization
  • Idempotent Liquibase Changesets

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: