func ExecSQL(SQL string, Result interface{}, Params ...interface{}) (interface{}, error)
执行SQL语句,返回执行结果(可选)
示例:
ExecSQL("CALL SP_GET(?)",&RESULT,Par1,Par2)
ExecSQL("select * from test where id=? and c=?",&RESULT,1,"yes")
ExecSQL("update test set c="no" where id=? and c=?",nil,1,"yes")