API reference - Class QSqlRecordNotation used in Ruby API documentation Description: Binding of QSqlRecord Public constructors
Public methods
Detailed description[const] bool !=(const QSqlRecord other)Description: Method bool QSqlRecord::operator!=(const QSqlRecord &other) [const] bool ==(const QSqlRecord other)Description: Method bool QSqlRecord::operator==(const QSqlRecord &other) void append(const QSqlField field)Description: Method void QSqlRecord::append(const QSqlField &field) QSqlRecord assign(const QSqlRecord other)Description: Method QSqlRecord &QSqlRecord::operator=(const QSqlRecord &other) [const] void assign(const QSqlRecord other)Description: Assign the contents of another object to self This method assigns the contents of another object to self. This is a deep copy that does not only copy the reference but the actual content. void clearDescription: Method void QSqlRecord::clear() void clearValuesDescription: Method void QSqlRecord::clearValues() [const] bool contains(string name)Description: Method bool QSqlRecord::contains(const QString &name) [const] int countDescription: Method int QSqlRecord::count() void createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void destroyDescription: Explicitly destroy the object Explicitly destroy the object on C++ side if it was owned by the Ruby interpreter. Subsequent access to this object will throw an exception. If the object is not owned by Ruby, this method will do nothing. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] QSqlRecord dupDescription: Creates a copy of self [const] QSqlField field(int i)Description: Method QSqlField QSqlRecord::field(int i) [const] QSqlField field(string name)Description: Method QSqlField QSqlRecord::field(const QString &name) [const] string fieldName(int i)Description: Method QString QSqlRecord::fieldName(int i) [const] int indexOf(string name)Description: Method int QSqlRecord::indexOf(const QString &name) void insert(int pos,const QSqlField field)Description: Method void QSqlRecord::insert(int pos, const QSqlField &field) [const] bool isEmptyDescription: Method bool QSqlRecord::isEmpty() [const] bool isEmpty?Description: Method bool QSqlRecord::isEmpty() [const] bool isGenerated(int i)Description: Method bool QSqlRecord::isGenerated(int i) [const] bool isGenerated(string name)Description: Method bool QSqlRecord::isGenerated(const QString &name) [const] bool isGenerated?(int i)Description: Method bool QSqlRecord::isGenerated(int i) [const] bool isGenerated?(string name)Description: Method bool QSqlRecord::isGenerated(const QString &name) [const] bool isNull(int i)Description: Method bool QSqlRecord::isNull(int i) [const] bool isNull(string name)Description: Method bool QSqlRecord::isNull(const QString &name) [const] bool isNull?(int i)Description: Method bool QSqlRecord::isNull(int i) [const] bool isNull?(string name)Description: Method bool QSqlRecord::isNull(const QString &name) [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. [static] new QSqlRecord newDescription: Constructor QSqlRecord::QSqlRecord() This method creates an object of class QSqlRecord. [static] new QSqlRecord new(const QSqlRecord other)Description: Constructor QSqlRecord::QSqlRecord(const QSqlRecord &other) This method creates an object of class QSqlRecord. void remove(int pos)Description: Method void QSqlRecord::remove(int pos) void replace(int pos,const QSqlField field)Description: Method void QSqlRecord::replace(int pos, const QSqlField &field) void setGenerated(string name,bool generated)Description: Method void QSqlRecord::setGenerated(const QString &name, bool generated) void setGenerated(int i,bool generated)Description: Method void QSqlRecord::setGenerated(int i, bool generated) void setNull(int i)Description: Method void QSqlRecord::setNull(int i) void setNull(string name)Description: Method void QSqlRecord::setNull(const QString &name) void setValue(int i,const QVariant val)Description: Method void QSqlRecord::setValue(int i, const QVariant &val) void setValue(string name,const QVariant val)Description: Method void QSqlRecord::setValue(const QString &name, const QVariant &val) [const] QVariant value(int i)Description: Method QVariant QSqlRecord::value(int i) [const] QVariant value(string name)Description: Method QVariant QSqlRecord::value(const QString &name) |