MCPcopy Index your code
hub / github.com/dropbox/godropbox / String

Method String

database/sqltypes/sqltypes.go:87–92  ·  view source on GitHub ↗

String returns the raw value as a string

()

Source from the content-addressed store, hash-verified

85
86// String returns the raw value as a string
87func (v Value) String() string {
88 if v.Inner == nil {
89 return ""
90 }
91 return string(v.Inner.raw())
92}
93
94// EncodeSql encodes the value into an SQL statement. Can be binary.
95func (v Value) EncodeSql(b encoding2.BinaryWriter) {

Callers 2

TestNullMethod · 0.95
TestBuildNumericFunction · 0.95

Calls 1

rawMethod · 0.65

Tested by 2

TestNullMethod · 0.76
TestBuildNumericFunction · 0.76