Column
Object Hierarchy:
Description:
public class Column<
G
> :
Object
Represents a column in an Almanna Entity.
Content:
Properties:
- public string name { set; get; }
Column name, matching database column name
- public string column_type { set; get; }
Column type, matching database column type
- public
G
default_value { set; get; }
Default value, in the format of the property being assigned
- public int size { set; get; }
Column size, if required by the database
- public bool is_nullable { set; get; }
For columns that can contain a NULL value, set to true
- public bool is_sequenced { set; get; }
For columns that are auto-generated or incremented, set to true
- public string sequence_name { set; get; }
Database sequence name, if required by the database and is_sequenced
is true
Delegates:
Creation methods:
Methods:
Inherited Members:
All known members inherited from class GLib.Object