Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExecInterface (0.16 sec)

  1. generics.go

    }
    
    func WithResult() *result {
    	return &result{}
    }
    
    type Interface[T any] interface {
    	Raw(sql string, values ...interface{}) ExecInterface[T]
    	Exec(ctx context.Context, sql string, values ...interface{}) error
    	CreateInterface[T]
    }
    
    type CreateInterface[T any] interface {
    	ExecInterface[T]
    	// chain methods available at start; Select/Omit keep CreateInterface to allow Create chaining
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sun Nov 02 14:09:18 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top