Creates a new #GdaQuarkList, which is a set of key->value pairs, very similar to GLib's GHashTable, but with the only purpose to make easier the parsing and creation of data source connection strings.
string must be a semi-colon separated list of "<key>=<value>" strings (for example "DB_NAME=notes;USERNAME=alfred"). Each key and value must respect the RFC 1738 recommendations: the <constant><>"#%{}|\^~[]'`;/?:@=&</constant> and space characters are replaced by <constant>"%ab"</constant> where <constant>ab</constant> is the hexadecimal number corresponding to the character (for example the "DB_NAME=notes;USERNAME=al%20fred" string will specify a username as "al fred"). If this formalism is not respected, then some unexpected results may occur.
Removes all strings in the given #GdaQuarkList.
Creates a new #GdaQuarkList from an existing one.
Searches for the value identified by name in the given #GdaQuarkList. For protected values (authentification data), don't forget to call gda.quark_list.QuarkList.protectValues when you don't need them anymore (when needed again, they will be unmangled again).
Calls the given function for each of the key/value pairs in qlist. The function is passed the key and value of each pair, and the given user_data parameter. qlist may not be modified while iterating over it.
Call this function to get rid of the clear version of the value associated to name.
Removes an entry from the #GdaQuarkList, given its name.
Returns this, for use in with statements.
Creates a new #GdaQuarkList given a string.
Pointer to the C boxed value
Get the GType of this boxed type.
Boxed GType property.
Convenience method to return this cast to a type. For use in D with statements.
Make a copy of the wrapped C boxed data.
Copy a C boxed value using g_boxed_copy.
Free a C boxed value using g_boxed_free.