使用sqlx要注意的点
1.使用query、queryRows返回的rows,应该使用rows.next(),扫描完每一行或者调用rows.close(),否则该链接永远不会被释放。The connection used by the Query remains active until either all rows are exhausted by the iteration via Next, or rows.C...