Delete returns a DeleteBuilder for this StatementBuilderType.
(from string)
| 28 | |
| 29 | // Delete returns a DeleteBuilder for this StatementBuilderType. |
| 30 | func (b StatementBuilderType) Delete(from string) DeleteBuilder { |
| 31 | return DeleteBuilder(b).From(from) |
| 32 | } |
| 33 | |
| 34 | // PlaceholderFormat sets the PlaceholderFormat field for any child builders. |
| 35 | func (b StatementBuilderType) PlaceholderFormat(f PlaceholderFormat) StatementBuilderType { |
no test coverage detected