Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
f4b3e7e4
authored
2013-08-13 19:33:43 +0800
by
slene
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
orm small update
1 parent
c6a436ed
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
orm/db.go
orm/db_alias.go
orm/db.go
View file @
f4b3e7e
...
...
@@ -201,10 +201,6 @@ func (d *dbBase) Read(q dbQuerier, mi *modelInfo, ind reflect.Value, tz *time.Lo
d
.
ins
.
ReplaceMarks
(
&
query
)
if
len
(
refs
)
==
21
{
fmt
.
Println
(
query
,
pkValue
)
}
row
:=
q
.
QueryRow
(
query
,
pkValue
)
if
err
:=
row
.
Scan
(
refs
...
);
err
!=
nil
{
if
err
==
sql
.
ErrNoRows
{
...
...
orm/db_alias.go
View file @
f4b3e7e
...
...
@@ -167,7 +167,7 @@ func RegisterDriver(driverName string, typ DriverType) {
drivers
[
driverName
]
=
typ
}
else
{
if
t
!=
typ
{
fmt
.
Println
(
"driverName `%s` db driver already registered and is other type"
)
fmt
.
Sprintf
(
"driverName `%s` db driver already registered and is other type
\n
"
,
driverName
)
os
.
Exit
(
2
)
}
}
...
...
@@ -177,7 +177,7 @@ func SetDataBaseTZ(name string, tz *time.Location) {
if
al
,
ok
:=
dataBaseCache
.
get
(
name
);
ok
{
al
.
TZ
=
tz
}
else
{
err
:=
fmt
.
Errorf
(
"DataBase name `%s` not registered
"
,
name
)
fmt
.
Println
(
err
)
fmt
.
Sprintf
(
"DataBase name `%s` not registered
\n
"
,
name
)
os
.
Exit
(
2
)
}
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment