1 Star 0 Fork 0

姜溪桐/study201901

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sqltest.js 721 Bytes
一键复制 编辑 原始数据 按行查看 历史
姜溪桐 提交于 2021-10-06 10:12 . --
'use strict'
const pg = require('pg')
let psql = new pg.Pool({
database: 'jxt',
user: 'jxt',
port: 5432,
host: '127.0.0.1',
password: 'jiangxitong1234',
// 最大使用5个客户端链接
max: 5
})
// 括号开头加分号
;(async ()=>{
let tm = Date.now()
// 随机数字转换成16进制并去掉前两位
let id = `${Math.random().toString(16).substring(2)}`
let sqltest = `INSERT INTO `
+ ` content(id,detail,title,add_time,update_time) `
+ ` VALUES($1,$2,$3,$4,$5)`
let r = await psql.query(sqltest,[
id, `测试内容:${Math.random()}`, 'test', tm, tm
])
console.log(r)
// 关闭连接
psql.end()
})();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jxt666/study201901.git
git@gitee.com:jxt666/study201901.git
jxt666
study201901
study201901
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385