- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
www.limesurvey.org/manual/Installation_-...rvey_on_your_websitePDO database driver for MySQL (pdo_mysql or pdo_mysqli) or Postgres (pdo_pgsql) or MSSQL (pdo_sqlsrv for Windows and pdo_dblib for Linux).
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
/** * @return string */ private function getMssqlDsn() { $port = $this->getDbPort(); $sDatabaseLocation = $this->dblocation; if ($port != '') { $sDatabaseLocation = $this->dblocation . ',' . $port; } $sDSN = $this->dbtype . ":Server={$sDatabaseLocation};"; if ($this->useDbName) { $sDSN .= "Database={$this->dbname}"; } $sDSN .= ";TrustServerCertificate=1"; return $sDSN; }
Please Log in to join the conversation.