We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c4fdb commit 8141af1Copy full SHA for 8141af1
Form1.cs
@@ -131,7 +131,7 @@ private static void ActionToPerform(CommandAndConnectionVo vo)
131
const string pwdKey = "PGPASSWORD";
132
var proc = new Process();
133
proc.StartInfo.FileName = "psql";
134
- proc.StartInfo.Arguments = $@"-U {vo.User} -c ""{vo.Type} database {vo.Database}""";
+ proc.StartInfo.Arguments = $@"-U {vo.User} -c ""{vo.Type} database """"{vo.Database}""""";
135
proc.StartInfo.RedirectStandardOutput = true;
136
proc.StartInfo.RedirectStandardError = true;
137
proc.StartInfo.UseShellExecute = false;
0 commit comments