Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rym-util
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhengqiuyun
rym-util
Commits
61b53bee
Commit
61b53bee
authored
Aug 25, 2022
by
zhengqiuyun86
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql加入连接配置
parent
1f5329a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
conf.go
conf/conf.go
+7
-5
MysqlClient.go
mysqlrym/MysqlClient.go
+11
-0
No files found.
conf/conf.go
View file @
61b53bee
...
@@ -80,11 +80,13 @@ var Es = EsConf{}
...
@@ -80,11 +80,13 @@ var Es = EsConf{}
//Mysql conf
//Mysql conf
type
MysqlConf
struct
{
type
MysqlConf
struct
{
Host
string
Host
string
Port
int
Port
int
User
string
User
string
Password
string
Password
string
NameSpace
string
NameSpace
string
MaxIdleConns
int
MaxOpenConns
int
}
}
var
MySql
=
MysqlConf
{}
var
MySql
=
MysqlConf
{}
mysqlrym/MysqlClient.go
View file @
61b53bee
...
@@ -111,6 +111,17 @@ func Init() {
...
@@ -111,6 +111,17 @@ func Init() {
conf
.
MySql
.
User
,
conf
.
MySql
.
Password
,
conf
.
MySql
.
Host
,
conf
.
MySql
.
Port
,
conf
.
MySql
.
NameSpace
)),
&
gorm
.
Config
{
conf
.
MySql
.
User
,
conf
.
MySql
.
Password
,
conf
.
MySql
.
Host
,
conf
.
MySql
.
Port
,
conf
.
MySql
.
NameSpace
)),
&
gorm
.
Config
{
Logger
:
newLogger
,
Logger
:
newLogger
,
})
})
sqlDB
,
err
:=
customerDb
.
DB
()
if
conf
.
MySql
.
MaxIdleConns
==
0
{
sqlDB
.
SetMaxIdleConns
(
10
)
}
else
{
sqlDB
.
SetMaxIdleConns
(
conf
.
MySql
.
MaxIdleConns
)
}
if
conf
.
MySql
.
MaxOpenConns
==
0
{
sqlDB
.
SetMaxOpenConns
(
10
)
}
else
{
sqlDB
.
SetMaxOpenConns
(
conf
.
MySql
.
MaxOpenConns
)
}
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Error
(
fmt
.
Sprintf
(
"%s connect error:%s"
,
"Mysql server"
,
err
.
Error
()))
log
.
Error
(
fmt
.
Sprintf
(
"%s connect error:%s"
,
"Mysql server"
,
err
.
Error
()))
}
else
{
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment