溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

發(fā)布時間:2021-12-14 14:20:47 來源:億速云 閱讀:157 作者:柒染 欄目:互聯(lián)網(wǎng)科技

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

前提:64位的PHP runtime和64位的Apache Web server已經(jīng)安裝完畢。

我們需要使用SAP HANA ODBC database drivers將PHP runtime和SAP HANA Express Editor進(jìn)行連接,在SAP官網(wǎng)進(jìn)行下載。

點(diǎn)擊HANA標(biāo)簽頁,下載SAP HANA Client 2.0并安裝:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

打開ODBC Data Source administrator:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

如果此處看到了HDBODBC驅(qū)動,說明SAP HANA client已經(jīng)成功安裝:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

在此處指定使用HDBODBC連接的SAP HANA Express地址:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

點(diǎn)擊Connect按鈕,輸入SYSTEM用戶的密碼:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

ODBC配置完畢如下圖:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

在apache web server的安裝文件夾下,打開htdocs文件夾,新建一個hxe文件夾,在里面創(chuàng)建一個index.php文件:

<?php
    $datasource = "hxe";
    $servername = "hxehost:39013";
    $username   = "SYSTEM";
    $password   = "********";
    $conn   = odbc_connect($datasource, $username, $password, SQL_CUR_USE_ODBC);
    if (!($conn)) {
        exit("Connection Failed: " . $conn);
    } else {
        $sql = 'SELECT "name" FROM food_collection';
        $rs  = odbc_exec($conn,$sql);
        if (!$rs) {
            exit("Error in SQL");
        }
?>
<table>
    <tr>
        <th>Food Name</th>
    </tr>
<?php		
        while (odbc_fetch_row($rs)) {
            $foodName = odbc_result($rs,"name");
?>
    <tr>
        <td>
            <?php echo $foodName ?>
        </td>
    </tr>
<?php
        }
?>
</table>
<?php
        odbc_close($conn);
    }
?>

在瀏覽器里打開這個php文件,會執(zhí)行里面的php代碼,通過ODBC發(fā)起對SAP HANA Express的數(shù)據(jù)查詢,并將結(jié)果顯示到瀏覽器里:

怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)

上述就是小編為大家分享的怎樣使用nodejs應(yīng)用查詢SAP HANA Express Edition里的數(shù)據(jù)了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI