通过 laravel 连接 oracle 数据库时出现问题

Problem in connecting with oracle database through laravel

通过 laravel8 -

连接 oracle 数据库时出现以下错误
ORA-12154: TNS:could not resolve the connect identifier specified

您必须检查 oracle 连接的配置。 根据 this config/database.php 的有效格式是:

'oracle' => [
    'driver' => 'oracle',
    'host' => 'oracle.host.ip.here',
    'port' => '1521',
    'database' => 'xe',
    'service_name' => 'sid_alias',
    'username' => 'hr',
    'password' => 'hr',
    'charset' => '',
    'prefix' => '',
]

如果您不确定在您的情况下必须使用的数据库或服务名称,请咨询您的 DBA。