mattn oci8连接Oracle查询结果返回结果里面多了一串不想要的字符串: %!(EXTRA <nil>)

jimyokl · · 1233 次点击
低级错误, 谢谢polaris 热情回答,改了以后就没问题了 [root@localhost ocitest]# ~/tasks/go/fjgd/bin/ocitest connected cool 7369 SMITH 7876 ADAMS 7900 JAMES
#2
更多评论
polaris
社区,需要你我一同完善!
`fmt.Printf(&#34;connected cool \n&#34;, err)` 执行到这里,说明 err 是 nil,而你打印的时候,用了 Printf ,没有指定格式,试试 `fmt.Println(&#34;connected cool \n&#34;, err)`
#1