Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. generics.go

    func (result) Build(clause.Builder) {
    }
    
    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 {
    	ChainInterface[T]
    	Table(name string, args ...interface{}) CreateInterface[T]
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
Back to top