有什么技巧可以将我的 php 连接到我的 Oracle 数据库吗? (FreeBSD 12.1 AMD)

Any tips to connect my php to my oracle DB? (FreeBSD 12.1 AMD)

我正在使用带有 amd 的 FreeBSD 12.1,php73 我正在尝试连接我的 oracle 数据库。我做了几次尝试但无济于事,显然 FreeBSD + AMD 缺少驱动器。

FreeBSD server.privatusdev.com.br 12.1-STABLE FreeBSD 12.1-STABLE #1 r361584M: Wed Sep 2 18:15:32 -03 2020 root@iso.proapps.serveru.us:/usr/obj/usr/src/amd64.amd64/sys/PROAPPS amd64

PHP 7.3.18 (cli) (built: Jun 15 2020 18:55:03) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.18, Copyright (c) 1998-2018 Zend Technologies

好吧,我的第一次尝试是连接 PDO:

$db_username = "USERX";
$db_password = "PASSWORD";
$db = "oci:dbname=MYIP:MYPORT/orcl";
$conn = new \PDO($db, $db_username, $db_password);
$stmt = $conn->exec("Select * from MYTABLE"); 

我遇到了这个错误:

[Fail to executed api. Return: "could not find driver" Code: 0, FileLine/Oracle.php:35 exception_type: PDOException]

我的第二次尝试是通过 odbc_connect

连接
$user = "USERX";
$password = "PASSWORDY";
$ODBCConnection = \odbc_connect("Driver={Devart ODBC driver for Oracle};Direct=true;Host=MYIP;Port=MYPORT;Service Name=orcl;User ID=USERX;password=PASSWORDY", $user, $password);

而且,你猜怎么着:

[Fail to executed api. Return: "odbc_connect(): SQL error: [unixODBC][Driver Manager]Can't open lib 'Devart ODBC driver for Oracle' : file not found, SQL state 01000 in SQLConnect" Code: 2, FileLineOracle.php:28 exception_type: yii\base\ErrorException]

嗯,在了解到缺少驱动器后,我开始尝试安装负责 oracle 数据库的 PDO 或 PECL。

我做的第一件事是在 freebsd 软件包中寻找 oracle

(root@server) /home/tiago# pkg search php | egrep -i "oracle|oci|oci8|orcl" --color Exit 1

好的,如果你没有它在 pkg 中,它可能存在于端口中。让我们看看那里?

# cd /usr/ports/databases/oracle8-client/ && make install clean
===>  oracle8-client-0.2.0_2 is only for i386, while you are running amd64.
*** Error code 1

Stop.
make: stopped in /usr/ports/databases/oracle8-client
Exit 1

心灰意冷,想简单点,通过PECL安装,但在下载之前,看到网上有人建议,下载SDK放到指定文件夹,然后放到指定文件夹,在安装时使用 SDK 传递该文件夹的路径..

#pecl install oci8-2.2.0
Please provide the path to the ORACLE_HOME directory. Use 'instantclient,/path/to/instant/client/lib' if you're compiling with Oracle Instant Client [autodetect]: instantclient,/opt /oracle/instantclient_12_2

但是,我现在遇到了这个错误:

checking Oracle Instant Client library version compatibility... configure: error: Oracle Instant Client libraries libnnz.so and libclntsh.so not found
ERROR: `/tmp/pear/oci8/configure --with-php-config=/usr/local/bin/php-config --with-oci8=instantclient,/opt/oracle/instantclient_19_8/' failed

我尝试安装这些缺失的 LIBD,但找不到任何安装它的软件包。

:(那一刻我绝望了,来求助社区

经过近 3 周的斗争,我找到了解决问题的方法。让我们先考虑一些因素。没有适用于 FreeBSD 的 Oracle ODBC,因此解决此问题的最佳方法是找到一个使用本机库连接到我的 Oracle 且无需在我的操作系统上安装连接器的系统。天哪,我记得有 .netcore,它使用 DLL 与 oracle 通信,也就是说,无论你使用哪个操作系统,DLL 总是 运行,你只需要 运行 .netcore 在您的操作系统上。为此,请按照我遵循的步骤操作:

按照以下步骤在你的freebsd x64上下载并安装.netcore(在这个选项中,我离开了3.0.0版本,他的解释更完整,但我选择使用3.1.1版本的SDK)jasonpugsley/installer

完成此安装后,我在 visual studio 中创建了一个小项目来快速连接到数据库。

using System;
using Oracle.ManagedDataAccess.Client;
namespace oracle
{
    class Program
    {
        static void Main(string[] args)
        {
            using (OracleConnection connection = new OracleConnection("User Id=hr;Password=oracle;Data Source=//localhost:1521/orcl"))
            {
                using (OracleCommand cmd = connection.CreateCommand())
                {
                    try
                    {
                        connection.Open();
                        cmd.BindByName = true;
                        cmd.CommandText = "select * from countries";
                        OracleDataReader reader = cmd.ExecuteReader();

                        Console.WriteLine("rows" + reader.HasRows);

                        while (reader.Read())
                        {
                            Console.WriteLine(reader.GetValue(0));
                            Console.WriteLine(reader.GetString(0));
                        }

                    }
                    catch (Exception e)
                    {
                        Console.WriteLine(e.Message);
                    }
                }
                connection.Close();
            }
            Console.WriteLine("okay, its works guys! its alive. thx odin");
        }
                           
    }
   
}

啊,我只需要通过 nuget 下载 Oracle for .netcore

那么,我实施并 100% 发挥作用的想法是什么:

我的 PHP,当你需要与 oracle 对话时,PHP 打开一个到 .netcore 的连接并与 oracle 进行对话。希望对朋友们有所帮助!

PS:特别感谢 jasonpugsley 使用 freebsd 发布此 .netcore 文档,它对我帮助很大! jasonpugsley