gpt4 book ai didi

postgresql - 将 Inno Setup exec 函数中的命令传递到 pgsql 数据库中

转载 作者:行者123 更新时间:2023-11-29 13:52:50 24 4
gpt4 key购买 nike

我正在运行以下代码,试图从我的 Inno Setup 脚本读取的文件中在我的 PostgreSQL 数据库中创建用户。不幸的是,唯一执行的命令是 SET PGPPASSWORD-U postgres elt 命令,它们将我连接到数据库。我需要在数据库中运行的其他命令被忽略,我似乎无法找到将它们输入数据库的方法。我可以使用字符将命令输入到 PostgreSQL 数据库中吗?

ExecAsOriginalUser('cmd.exe', '/k ' +'"SET PGPASSWORD=postgres&"' + 
InstallPath+ '\psql -U postgres elt -c '+ 'CREATE USER '
+ Users[UserCount - 1] + ' WITH PASSWORD ' + ''''
+ Password + '''' + '& ' + '\g', '', SW_SHOW, ewWaitUntilIdle, ResultCode);

命令行输出:

psql: warning: extra command-line argument "-c" ignored
"": extra command-line argument "CREATE" ignored
"": warning: extra command-line argument "USER" ignored
"": extra command-line argument "postgres" ignored
"": extra command-line argument "WITH" ignored
"": extra command-line argument "PASSWORD" ignored
"": extra command-line argument "'postgres'\g" ignorepsql
(9.5.3) WARNING: Console code page (437) differs from
Windows code page
(1252) 8-bit characters might not work correctly. See psql reference page
"Notes for Windows users" for details.
Type "help" for help.
db=#

最佳答案

您可能只需要用双引号将 SQL 括起来:

ExecAsOriginalUser('cmd.exe',
'/c SET PGPASSWORD=postgres& '
+ InstallPath + '\psql -U postgres elt -c "CREATE USER '
+ Users[UserCount - 1] + ' WITH PASSWORD ''' + Password + '''"',
'', SW_SHOW, ewWaitUntilIdle, ResultCode);

首先通过在命令行上运行来验证它:

cmd.exe /c SET PGPASSWORD=postgres& C:\eltfiles\pgsql\bin\psql -U postgres elt -c "CREATE USER postgres WITH PASSWORD 'postgres'"

关于postgresql - 将 Inno Setup exec 函数中的命令传递到 pgsql 数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37712525/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com