Tabnine Logo
Delete$Options.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.datastax.driver.core.querybuilder.Delete$Options
constructor

Best Java code snippets using com.datastax.driver.core.querybuilder.Delete$Options.<init> (Showing top 6 results out of 315)

origin: io.prestosql.cassandra/cassandra-driver

Delete(String keyspace,
    String table,
    List<Object> routingKeyValues,
    List<ColumnMetadata> partitionKey,
    List<Selector> columns) {
  super(keyspace, partitionKey, routingKeyValues);
  this.table = table;
  this.columns = columns;
  this.where = new Where(this);
  this.usings = new Options(this);
  this.conditions = new Conditions(this);
  // This is for JAVA-1089, if the query deletes an element in a list, the statement should be non-idempotent.
  if (!areIdempotent(columns)) {
    setNonIdempotentOps();
  }
}
origin: com.yugabyte/cassandra-driver-core

Delete(String keyspace,
    String table,
    List<Object> routingKeyValues,
    List<ColumnMetadata> partitionKey,
    List<Selector> columns) {
  super(keyspace, partitionKey, routingKeyValues);
  this.table = table;
  this.columns = columns;
  this.where = new Where(this);
  this.usings = new Options(this);
  this.conditions = new Conditions(this);
  // This is for JAVA-1089, if the query deletes an element in a list, the statement should be non-idempotent.
  if (!areIdempotent(columns)) {
    setNonIdempotentOps();
  }
}
origin: com.facebook.presto.cassandra/cassandra-driver

Delete(String keyspace,
    String table,
    List<Object> routingKeyValues,
    List<ColumnMetadata> partitionKey,
    List<Selector> columns) {
  super(keyspace, partitionKey, routingKeyValues);
  this.table = table;
  this.columns = columns;
  this.where = new Where(this);
  this.usings = new Options(this);
  this.conditions = new Conditions(this);
  // This is for JAVA-1089, if the query deletes an element in a list, the statement should be non-idempotent.
  if (!areIdempotent(columns)) {
    setNonIdempotentOps();
  }
}
origin: com.stratio.cassandra/cassandra-driver-core

Delete(TableMetadata table, List<Object> columnNames) {
  super(table);
  this.table = escapeId(table.getName());
  this.columnNames = columnNames;
  this.where = new Where(this);
  this.usings = new Options(this);
}
origin: com.stratio.cassandra/cassandra-driver-core

Delete(String keyspace, String table, List<Object> columnNames) {
  super(keyspace);
  this.table = table;
  this.columnNames = columnNames;
  this.where = new Where(this);
  this.usings = new Options(this);
}
origin: com.datastax.cassandra/cassandra-driver-core

Delete(
  String keyspace,
  String table,
  List<Object> routingKeyValues,
  List<ColumnMetadata> partitionKey,
  List<Selector> columns) {
 super(keyspace, partitionKey, routingKeyValues);
 this.table = table;
 this.columns = columns;
 this.where = new Where(this);
 this.usings = new Options(this);
 this.conditions = new Conditions(this);
 // This is for JAVA-1089, if the query deletes an element in a list, the statement should be
 // non-idempotent.
 if (!areIdempotent(columns)) {
  setNonIdempotentOps();
 }
}
com.datastax.driver.core.querybuilderDelete$Options<init>

Popular methods of Delete$Options

  • and
    Adds the provided option.
  • checkForBindMarkers
  • where
    Adds a where clause to the DELETE statement these options are part of.

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now