Better document PgConn.Prepare implementation

pull/1804/head
Jack Christensen 2023-11-11 09:22:32 -06:00 committed by Jack Christensen
parent df5d00eb60
commit 0570b0e196
1 changed files with 3 additions and 0 deletions

View File

@ -813,6 +813,9 @@ type StatementDescription struct {
// Prepare creates a prepared statement. If the name is empty, the anonymous prepared statement will be used. This
// allows Prepare to also to describe statements without creating a server-side prepared statement.
//
// Prepare does not send a PREPARE statement to the server. It uses the PostgreSQL Parse and Describe protocol messages
// directly.
func (pgConn *PgConn) Prepare(ctx context.Context, name, sql string, paramOIDs []uint32) (*StatementDescription, error) {
if err := pgConn.lock(); err != nil {
return nil, err