WriteString write string
(str string)
| 68 | |
| 69 | // WriteString write string |
| 70 | func (stmt *Statement) WriteString(str string) (int, error) { |
| 71 | return stmt.SQL.WriteString(str) |
| 72 | } |
| 73 | |
| 74 | // WriteByte write byte |
| 75 | func (stmt *Statement) WriteByte(c byte) error { |
nothing calls this directly
no test coverage detected