Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CellValue ¶ added in v0.2.7
type CellValue struct { Value interface{} Column string TableColumnIndex int TableRowIndex int Type CellValueType }
type CellValueType ¶ added in v0.2.7
type CellValueType int8
const ( Empty CellValueType = iota Null Default String )
This is not a direct map of the database types, but rather a way to represent them in the UI. So the String type is a representation of the cell value in the UI table and the others are just a representation of the values that you can put in the database but not in the UI as a string of characters.
type DatabaseTableColumn ¶ added in v0.1.8
type DbDmlChange ¶
type DbDmlChange struct { Database string Table string PrimaryKeyInfo []PrimaryKeyInfo Values []CellValue Type DmlType }
type PrimaryKeyInfo ¶ added in v0.3.1
func (PrimaryKeyInfo) Equal ¶ added in v0.3.1
func (pki PrimaryKeyInfo) Equal(other PrimaryKeyInfo) bool
type SidebarEditingCommitParams ¶ added in v0.3.0
type SidebarEditingCommitParams struct { ColumnName string NewValue string Type CellValueType }
type StateChange ¶
type StateChange struct { Value interface{} Key string }
Click to show internal directories.
Click to hide internal directories.