Sha256: a4ddb8dff3046d74562250e79312d78489287f0f46ba21384cddb5d6ea719c05
Contents?: true
Size: 438 Bytes
Versions: 17
Compression:
Stored size: 438 Bytes
Contents
module OrientDB::SQL class Delete include OrientDB::SQL::UtilsMixin include OrientDB::SQL::ClassClusterParametersMixin include OrientDB::SQL::ConditionsParametersMixin def initialize @oclass = nil @cluster = nil @conditions = [] end def to_s (target_sql(:delete_from) + conditions_sql).strip end def to_sql_command OrientDB::SQLCommand.new to_s end end end
Version data entries
17 entries across 17 versions & 1 rubygems