sqlparam.go 266 B

12345678910111213141516
  1. package mysql
  2. type MySQLParameter struct {
  3. PoolConnCount int
  4. }
  5. func (this *MySQLParameter) Init() {
  6. this.PoolConnCount = 32
  7. }
  8. func (this *MySQLParameter) SetPassword(v string) {
  9. }
  10. func (this *MySQLParameter) SetConnCount(val int) {
  11. this.PoolConnCount = val
  12. }