Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LindsayBradford/go-dbf
/ types & classes
Types & classes
20 in github.com/LindsayBradford/go-dbf
⨍
Functions
115
◇
Types & classes
20
TypeAlias
DbaseDataType
DbaseDataType is dBase data type, as per https://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm, under heading "Storage of dBASE Data Types".
godbf/field.go:37
Struct
DbfTable
DbfTable is an in-memory container for dbase formatted data, and state that helps manage that data.
godbf/table.go:28
Struct
FieldDescriptor
FieldDescriptor describes one field/column in a DbfTable as per https://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm, Heading 1.2.
godbf/field.go:4
Struct
createErrorFileSystem
godbf/io_test.go:274
Struct
createPanicFileSystem
godbf/io_test.go:300
Struct
dateOfLastUpdate
dateOfLastUpdate holds the date of last update; in YYMMDD format where each is stored in a single byte, as per dBase. A consequence of this is that th
godbf/table.go:87
Struct
dbaseData
dbaseData stores dBase file information in byte-arrays, for convnient saving and loading dBase compatible files. For reference: https://en.wikipedia.o
godbf/table.go:37
Struct
encodingSupport
encoding provides text encoding support for DbfTable
godbf/table.go:168
Interface
file
godbf/helpers.go:29
Interface
fileSystem
https://talks.golang.org/2012/10things.slide#8
godbf/helpers.go:14
Struct
header
dbase file header information
godbf/table.go:44
Struct
imageCache
imageCache keeps a dbase table in memory as its byte array encoding
godbf/table.go:181
Struct
openErrorFileSystem
godbf/io_test.go:230
Struct
osFileSystem
osFileSystem implements fileSystem using the local disk.
godbf/helpers.go:21
FuncType
readerFunction
func(r io.Reader, buf []byte) (int, error)
godbf/helpers.go:8
Struct
record
godbf/table.go:145
TypeAlias
records
godbf/table.go:143
Struct
schemaLockable
schemaLockable permits or denys updates to the database field-definitions. You can only add new records when the schema has become locked.
godbf/table.go:163
Struct
statErrorFileSystem
godbf/io_test.go:248
Struct
tableManagement
tableManagement is an aggregate of structs and their methods that are not part of the dBase file standard, but nevertheless useful in managing an in-m
godbf/table.go:152