Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for geturl (0.61 sec)

  1. prepare_stmt.go

    		return &PreparedStmtTX{PreparedStmtDB: db, Tx: tx}, err
    	}
    
    	beginner, ok := db.ConnPool.(ConnPoolBeginner)
    	if !ok {
    		return nil, ErrInvalidTransaction
    	}
    
    	connPool, err := beginner.BeginTx(ctx, opt)
    	if err != nil {
    		return nil, err
    	}
    	if tx, ok := connPool.(Tx); ok {
    		return &PreparedStmtTX{PreparedStmtDB: db, Tx: tx}, nil
    	}
    	return nil, ErrInvalidTransaction
    }
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Mar 28 08:47:39 GMT 2024
    - 6.4K bytes
    - Viewed (0)
Back to top