Documentation
¶
Index ¶
- Constants
- func ParseFloat(s string) (float64, bool)
- func ParseInt(s string) (int64, bool)
- type Column
- type Query
- func (q *Query) BinaryValue(i int) []byte
- func (q *Query) Close() error
- func (q *Query) ColumnInfo() []Column
- func (q *Query) Columns() []string
- func (q *Query) DateTimeValue(i int) (time.Time, bool)
- func (q *Query) IsNull(i int) bool
- func (q *Query) Next() (bool, error)
- func (q *Query) Value(i int) string
Constants ¶
View Source
const ( TypeBool = int(C.MDB_BOOL) TypeByte = int(C.MDB_BYTE) TypeInt = int(C.MDB_INT) TypeLongInt = int(C.MDB_LONGINT) TypeMoney = int(C.MDB_MONEY) TypeFloat = int(C.MDB_FLOAT) TypeDouble = int(C.MDB_DOUBLE) TypeDateTime = int(C.MDB_DATETIME) TypeBinary = int(C.MDB_BINARY) TypeText = int(C.MDB_TEXT) TypeOLE = int(C.MDB_OLE) TypeMemo = int(C.MDB_MEMO) TypeRepID = int(C.MDB_REPID) TypeNumeric = int(C.MDB_NUMERIC) TypeComplex = int(C.MDB_COMPLEX) )
Variables ¶
This section is empty.
Functions ¶
func ParseFloat ¶
Types ¶
type Query ¶
type Query struct {
// contains filtered or unexported fields
}
func (*Query) BinaryValue ¶
func (*Query) ColumnInfo ¶
Click to show internal directories.
Click to hide internal directories.