Versions in this module Expand all Collapse all v0 v0.2.2 May 2, 2025 Changes in this version + type DatabaseDriver string + const MySQL + const Postgres + const SQLite + func (d DatabaseDriver) Color() string + func (d DatabaseDriver) ColoredLabel() string + func (d DatabaseDriver) Label() string + func (d DatabaseDriver) String() string + func (d DatabaseDriver) Valid() bool + type ParamRequirements struct + MaxParams int + MinParams int + type QueryOperator string + const OpBetween + const OpEqual + const OpGreaterThan + const OpGreaterThanOrEqual + const OpILike + const OpIn + const OpIsNotNull + const OpIsNull + const OpLessThan + const OpLessThanOrEqual + const OpLike + const OpNotBetween + const OpNotEqual + const OpNotIn + const OpNotLike + func ParseOperator(input string) (QueryOperator, bool) + func (o QueryOperator) GetRequirements() ParamRequirements + func (o QueryOperator) String() string + func (o QueryOperator) Suffix() string + func (o QueryOperator) ValidateParams(paramsCount int) error