Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Column ¶
type Column struct { Name string `json:"name"` DatabaseType string `json:"databaseType"` Nullable *bool `json:"nullable,omitempty"` Length *int64 `json:"length,omitempty"` Precision *int64 `json:"precision,omitempty"` Scale *int64 `json:"scale,omitempty"` }
func NewColumn ¶
func NewColumn(ct *sql.ColumnType) *Column
type Container ¶
type Container struct { ID string `json:"id"` Name string `json:"name"` Image string `json:"image"` }
func NewContainerFromContainerJSON ¶
func NewContainerFromContainerJSON(cj *types.ContainerJSON) *Container
type QueryResult ¶
type QueryResult struct { Columns []Column `json:"columns"` Rows [][]interface{} `json:"rows"` }
Click to show internal directories.
Click to hide internal directories.