1
0
mirror of https://github.com/ManyakRus/starter.git synced 2025-11-29 23:38:14 +02:00

сделал ReplaceSchemaName()

This commit is contained in:
Nikitin Aleksandr
2025-01-16 15:21:11 +03:00
parent 5eaa9fd103
commit 5cd81530dc
2 changed files with 26 additions and 1 deletions

View File

@@ -1,7 +1,11 @@
package postgres_func
import "time"
import (
"strings"
"time"
)
// StringSQLTime - преобразует время в строку в формате SQL
func StringSQLTime(time1 time.Time) string {
Otvet := ""
@@ -12,6 +16,7 @@ func StringSQLTime(time1 time.Time) string {
return Otvet
}
// StringSQLTime - преобразует время в строку в формате SQL, без часового пояса
func StringSQLTime_WithoutTimeZone(time1 time.Time) string {
Otvet := ""
@@ -20,3 +25,12 @@ func StringSQLTime_WithoutTimeZone(time1 time.Time) string {
return Otvet
}
// ReplaceSchemaName - заменяет имя схемы в тексте SQL
func ReplaceSchemaName(TextSQL, SchemaNameFrom, SchemaNameTo string) string {
Otvet := TextSQL
Otvet = strings.ReplaceAll(Otvet, SchemaNameFrom+".", SchemaNameTo+".")
return Otvet
}