class PreparedStatement

Attributes

statement[R]

Public Class Methods

new(client, statement) click to toggle source
# File lib/cassandra_migrations/cql-rb-wrapper.rb, line 9
def initialize(client, statement)
  @client = client
  @statement = statement
end

Public Instance Methods

execute(*args) click to toggle source
# File lib/cassandra_migrations/cql-rb-wrapper.rb, line 14
def execute(*args)
  @client.execute(@statement, *args)
end