• This project
    • Loading...
  • Sign in

2019-1-OpenSourceSW / WhoAreYou

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • WhoAreYou
  • database
  • user
  • findById.js
  • 서주원's avatar
    set routings · 6768ecc8
    6768ecc8
    서주원 authored 2018-11-29 19:56:24 +0900
findById.js 378 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
const mysql=require('mysql')
const dbconfig=require('../../dbconfig')

exports.findById=(userId)=>{
    const connection=mysql.createConnection(dbconfig)
    connection.connect()

    connection.query(`select * from user where userId=${userId}`,(err,result,fields)=>{
        if(err){
            throw err
        }
        else{
            return result
        }
    })
}