Results 12 comments of 初七

Failure to return stored procedure correctly The following stored procedures: ALTER PROCEDURE [dbo]. [lP_Date] @ fdate varchar (200) AS BEGIN Select 1 as FID RAISERROR ('Can't Delete Audited Documents!', 18,...

> 也许你可以看看我的分支:[https](https://github.com/cs8425/smux/tree/implement-half-close):[//github.com/cs8425/smux/tree/implement-half-close](https://github.com/cs8425/smux/tree/implement-half-close) > 我实现半关闭功能,但如果有数据竞争则没有完全测试。 你都改写了什么功能?最近也在用这个包,发现有Read Stream Error broken pipe 错误,不知道如何发生的。

感谢你的回复。 我想做HTTPS转发(我已经经过其他方法实现),用net.Listen 监听端口,然后用浏览器https访问这个端口。但发现 c.getTunnelInfo() 这个方法不能解析https请求。我测试时请求数据开头是:【22 3 1 2 0 1 0 1 252 3 3 26 228 218 84 238 33。。。】

谢谢。我学习一下,非常感谢。

``` mmc.GET("/putcustomer", ui.PutCustomer) mmc.POST("/putcustomer", api.PutCustomer) ```

好建议,支持。

DotWeb 冲鸭 DotWeb 牛啤 _共建 Dotweb_

我个人的处理办法是在param.go的67行下增加 if p.isDescribed && (p.SQLType == api.SQL_VARCHAR || p.SQLType == api.SQL_CHAR) { size = api.SQLULEN(len(d)) if size < 1 { // size cannot be less then 1 even for empty...

package main import ( "fmt" "unicode/utf16" ) func main() { val := "你好" fmt.Println(val) u16 := StringToUTF16(val) fmt.Println("u16", len(u16), u16) // u16 3 [20320 22909 0] u8 := []byte(val) fmt.Println("u8",...

谢谢,回头按你的方式测试一下。