mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
demo merge into project
This commit is contained in:
parent
c1ed2f14c8
commit
f08941c0bd
@ -121,7 +121,10 @@ func SelectAllUID() ([]string, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return uid, err
|
return uid, err
|
||||||
}
|
}
|
||||||
rows, _ := dbConn.Raw("select uid from user").Rows()
|
rows, err := dbConn.Raw("select uid from user").Rows()
|
||||||
|
if err != nil {
|
||||||
|
return uid, err
|
||||||
|
}
|
||||||
defer rows.Close()
|
defer rows.Close()
|
||||||
var strUID string
|
var strUID string
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user