ningmonguo
Results
2
issues of
ningmonguo
`package sqlite_db import ( "database/sql" "fmt" "github.com/glebarez/sqlite" _ "github.com/mattn/go-sqlite3" "gorm.io/gorm" "log" ) func Sqlite() { dial := sqlite.Open("sqlite3:example.db") db, err := gorm.Open(dial) if err != nil { fmt.Println("open dial err,...
When connecting to certain Huawei devices via Telnet using netmiko, authentication fails if the password is sent with `\r\n` as the line ending. These huawei devices strictly require `\r` (carriage...