mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
9 lines
146 B
Go
9 lines
146 B
Go
package sql
|
|
|
|
import "testing"
|
|
|
|
func TestEscapeString(t *testing.T) {
|
|
str := "' OR ''=' union select 1,database(),2#"
|
|
t.Log(EscapeString(str))
|
|
}
|