Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewPreparedStmtDB (0.42 sec)

  1. gorm.go

    		err = config.Dialector.Initialize(db)
    
    		if err != nil {
    			if db, _ := db.DB(); db != nil {
    				_ = db.Close()
    			}
    		}
    	}
    
    	if config.PrepareStmt {
    		preparedStmt := NewPreparedStmtDB(db.ConnPool)
    		db.cacheStore.Store(preparedStmtDBKey, preparedStmt)
    		db.ConnPool = preparedStmt
    	}
    
    	db.Statement = &Statement{
    		DB:       db,
    		ConnPool: db.ConnPool,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. prepare_stmt.go

    	Transaction bool
    	prepared    chan struct{}
    	prepareErr  error
    }
    
    type PreparedStmtDB struct {
    	Stmts       map[string]*Stmt
    	PreparedSQL []string
    	Mux         *sync.RWMutex
    	ConnPool
    }
    
    func NewPreparedStmtDB(connPool ConnPool) *PreparedStmtDB {
    	return &PreparedStmtDB{
    		ConnPool:    connPool,
    		Stmts:       make(map[string]*Stmt),
    		Mux:         &sync.RWMutex{},
    		PreparedSQL: make([]string, 0, 100),
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top