瀏覽代碼

chore: add comments (#1345)

Kevin Wan 3 年之前
父節點
當前提交
b299f350be
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      core/stores/sqlx/sqlconn.go

+ 1 - 0
core/stores/sqlx/sqlconn.go

@@ -25,6 +25,7 @@ type (
 	SqlConn interface {
 	SqlConn interface {
 		Session
 		Session
 		// RawDB is for other ORM to operate with, use it with caution.
 		// RawDB is for other ORM to operate with, use it with caution.
+		// Notice: don't close it.
 		RawDB() (*sql.DB, error)
 		RawDB() (*sql.DB, error)
 		Transact(func(session Session) error) error
 		Transact(func(session Session) error) error
 	}
 	}