Add support for blob expressions.
This commit is contained in:
parent
26e478dc7e
commit
c94216ab0e
37 changed files with 1296 additions and 81 deletions
|
|
@ -23,6 +23,12 @@ type ColumnString = jet.ColumnString
|
|||
// StringColumn creates named string column.
|
||||
var StringColumn = jet.StringColumn
|
||||
|
||||
// ColumnBytea is interface for bytea columns
|
||||
type ColumnBytea = jet.ColumnBlob
|
||||
|
||||
// ByteaColumn creates new named bytea column.
|
||||
var ByteaColumn = jet.BlobColumn
|
||||
|
||||
// ColumnInteger is interface for SQL smallint, integer, bigint columns.
|
||||
type ColumnInteger = jet.ColumnInteger
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue