Documentation ¶
Index ¶
Constants ¶
View Source
const ( Host = "localhost" Port = 5432 User = "jet" Password = "jet" DBName = "jetdb" )
Postgres test database connection parameters
View Source
const ( MySqLHost = "localhost" MySQLPort = 3306 MySQLUser = "jet" MySQLPassword = "jet" )
MySQL test database connection parameters
Variables ¶
View Source
var MySQLConnectionString = fmt.Sprintf("%s:%s@tcp(%s:%d)/", MySQLUser, MySQLPassword, MySqLHost, MySQLPort)
MySQLConnectionString is MySQL driver connection string to test database
View Source
var PostgresConnectString = fmt.Sprintf("host=%s port=%d user=%s password=%s dbname=%s sslmode=disable", Host, Port, User, Password, DBName)
PostgresConnectString is PostgreSQL test database connection string
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.