DravenK

Results 24 comments of DravenK

I used the same version MS Sql server 2008 r2 and caught the same errors. ``` Login error: unexpected EOF ```

Yeah. I tried both "encrypt=disable" and "encrypt=false" in my connection string. ``` server=MYPC;user id=SA;password=MyPassword;port=1433;connection timeout=15;encrypt=disable;TrustServerCertificate=false;app name=myapp;log=32; ``` But unfortunately, it didn't work as expected. That's probably where the error came...

It is possible that the error is not really from a login error. Because when I check the MSSQL log, I find a lot of records about the program that...

Finally, I changed the connection string to ODBC, and I was able to connect to the database and execute the `SELECT @@version` statement. ``` odbc:server=MYPC\Instance;user id=sa;password=saPassword;database=master;app name=myApp; ````

Try to fix in /model/db.go. change ``` DbMap.TraceOn("", log.New(dbTraceWriter, "gorptest: ", log.Lmicroseconds)) ``` to ``` DbMap.TraceOn("","", log.New(dbTraceWriter, "gorptest: ", log.Lmicroseconds)) ```

@ccamara I'm not sure. Maybe the dependencies are not fully downloaded. I couldn't replicate the bug. This is the full log: ``` dravenk:~ longxianwen$ ls go/bin/ dravenk:~ longxianwen$ go get...

@ccamara Can you please provide the detail environment information. Perhaps this will help project authors replicate the situation. Just run `go env` and copy into here.

I read the test coverage report and was confused as to why test coverage had declined.

All tests are passed. Please reviews.