mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 16:30:25 +08:00
10 lines
120 B
Go
10 lines
120 B
Go
|
|
package dbi
|
||
|
|
|
||
|
|
import (
|
||
|
|
"strings"
|
||
|
|
)
|
||
|
|
|
||
|
|
func QuoteEscape(str string) string {
|
||
|
|
return strings.Replace(str, `'`, `''`, -1)
|
||
|
|
}
|