Documentation ¶
Overview ¶
Funciones misceláneas
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EscapeSQL ¶
Escapa un texto para su uso en órdenes SQL
Example ¶
sql := `select * from tabla where nombre=` + EscapeSQL("O'Brian") fmt.Println(sql)
Output: select * from tabla where nombre='O''Brian'
func Max ¶
func Max[T constraints.Ordered](v ...T) T
Halla el máximo de una lista
Example ¶
fmt.Println(Max(-2, 3, 1))
Output: 3
func Min ¶
func Min[T constraints.Ordered](v ...T) T
Halla el mínimo de una lista
Example ¶
fmt.Println(Min(3, -2, 3, 1))
Output: -2
func SqlIn ¶
Compone parte de una clausula WHERE CAMPO IN (VALORES...) Devuelve "in (VALORES...)" o "= VALOR" o "is null"
Example ¶
codigos := []string{"cero", "uno", "dos", "tres"} sql := `select * from tabla where codigo` + SqlIn(codigos[1:]...) fmt.Println(sql)
Output: select * from tabla where codigo in ('uno','dos','tres')
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.