Home > Database > Mysql Tutorial > PostgreSql命令行不输入密码的两种方法

PostgreSql命令行不输入密码的两种方法

WBOY
Release: 2016-06-07 14:53:54
Original
1513 people have browsed it

PostgreSql命令行不输入密码的两种方法 给客户的数据结构进行修改,使用的是PostgreSQL数据库, 编写自动执行脚步,但是命令行需要提示密码输入会中断 自动执行过程,经研究有两种方法可以不用输入密码: www.2cto.com 1、设置密码变量 Java代码 set PGPASSW


PostgreSql命令行不输入密码的两种方法

 

给客户的数据结构进行修改,使用的是PostgreSQL数据库,

编写自动执行脚步,但是命令行需要提示密码输入会中断

自动执行过程,经研究有两种方法可以不用输入密码:

  www.2cto.com  

1、设置密码变量

Java代码  

set PGPASSWORD=mypassword  

psql  -f upgrade.sql -U postgres mydbname  

 

2、在命令行中写入连接信息

Java代码  

psql  -f upgrade.sql "dbname=mydbname user=postgres password=postgres" 

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template