comment debug info

This commit is contained in:
Lunny Xiao 2014-01-24 09:07:10 +08:00
parent d71a6af18a
commit 42e5fb880f
1 changed files with 1 additions and 1 deletions

View File

@ -2475,7 +2475,7 @@ func (session *Session) innerInsert(bean interface{}) (int64, error) {
}
colPlaces := strings.Repeat("?, ", len(colNames))
fmt.Println(colNames, args)
//fmt.Println(colNames, args)
colPlaces = colPlaces[0 : len(colPlaces)-2]
sqlStr := fmt.Sprintf("INSERT INTO %v%v%v (%v%v%v) VALUES (%v)",