MCPcopy Create free account
hub / github.com/IceFireDB/IceFireDB / IsNull

Method IsNull

IceFireDB-SQLite/pkg/mysql/mysql/resultset.go:100–107  ·  view source on GitHub ↗
(row, column int)

Source from the content-addressed store, hash-verified

98}
99
100func (r *Resultset) IsNull(row, column int) (bool, error) {
101 d, err := r.GetValue(row, column)
102 if err != nil {
103 return false, err
104 }
105
106 return d == nil, nil
107}
108
109func (r *Resultset) IsNullByName(row int, name string) (bool, error) {
110 if column, err := r.NameIndex(name); err != nil {

Callers 1

IsNullByNameMethod · 0.95

Calls 1

GetValueMethod · 0.95

Tested by

no test coverage detected