Klasse Tuples

Alle implementierten Schnittstellen:
PointerInterface

public class Tuples extends Record
The #GTuples struct is used to return records (or tuples) from the
#GRelation by g_relation_select(). It only contains one public
member - the number of records that matched. To access the matched
records, you must use g_tuples_index().

https://docs.gtk.org/glib/struct.Tuples.html

  • Felddetails

  • Konstruktordetails

  • Methodendetails

    • getClassHandler

      public static ClassHandler getClassHandler()
    • setFieldLen

      public void setFieldLen(int len)
      the number of records that matched.
    • getFieldLen

      public int getFieldLen()
      the number of records that matched.
    • destroy

      @Deprecated public void destroy()
      Veraltet.
      Frees the records which were returned by g_relation_select(). This
      should always be called after g_relation_select() when you are
      finished with the records. The records are not removed from the
      #GRelation.
      Setzt außer Kraft:
      destroy in Klasse Record
    • index

      @Deprecated public Pointer index(int index_, int field)
      Veraltet.
      Gets a field from the records returned by g_relation_select(). It
      returns the given field of the record at the given index. The
      returned value should not be changed.
      Parameter:
      index_ - the index of the record.
      field - the field to return.
      Gibt zurück:
      the field of the record.