propel init create a wrong DSN when pdo_sqlsrv driver is selected.
I observed line 389 in the InitCommand.php literally inserts user and password into the DSN as shown in the code snippet below. This in turn results to SQLSTATE[IMSSP] error being thrown later when the DSN is used in the PdoConnection.php to establish a connection to MSSQL server.
Changing the line to the snippet below fixes the problem but I suppose this might in turn result to an error for the other drivers that requires/supports user and password in the DSN string.
propel init
create a wrong DSN whenpdo_sqlsrv
driver is selected. I observed line 389 in theInitCommand.php
literally insertsuser
andpassword
into the DSN as shown in the code snippet below. This in turn results toSQLSTATE[IMSSP]
error being thrown later when the DSN is used in thePdoConnection.php
to establish a connection to MSSQL server.Changing the line to the snippet below fixes the problem but I suppose this might in turn result to an error for the other drivers that requires/supports
user
andpassword
in the DSN string.