摘要: package main import ( "database/sql" "fmt" "log" _ "github.com/lib/pq" // postgres driver ) // People - database type People struct { id int name string age int } ... 阅读全文
posted @ 2016-10-29 10:56 ibg 阅读(2828) 评论(0) 推荐(0) 编辑