(b BinWriter, c byte)
| 337 | } |
| 338 | |
| 339 | func writebyte(b BinWriter, c byte) { |
| 340 | if err := b.WriteByte(c); err != nil { |
| 341 | panic(err) |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | // SqlEncodeMap specifies how to escape binary data with '\'. |
| 346 | // Complies to http://dev.mysql.com/doc/refman/5.1/en/string-syntax.html |
no test coverage detected