1 Star 0 Fork 0

LITIANYU/study201901

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sqltest.js 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
Litianyu 提交于 2021-10-08 14:08 . --
'use strict'
const pg = require('pg');
let psql = new pg.Pool({
database:'litianyu',
user:'litianyu',
port:5432,
host:'127.0.0.1',
password:'001223',
//最大使用5个客户端连接
max:5
})
;(async ()=>{
let tm = Date.now()
//随机字符串转成十六进制并去掉前两位
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/sjzlitianyu/study201901.git
git@gitee.com:sjzlitianyu/study201901.git
sjzlitianyu
study201901
study201901
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385