php - db2连接在centos6.2中

时间:2016-08-09 05:30:33

标签: php db2

我在192.168.0.xxx:xx中有db2数据库,在192.168.0.xxx(Cent OS 6.2)中有我的应用程序(PHP脚本)。 所以我需要通过php脚本执行一些db2查询。

  • PHP 5.3.3
  • CentOS 6.2版(最终版)
  • LSB版本:core-4.0-ia32:core-4.0-noarch:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-ia32:printing-4.0-noarch
  • DATABASE IBM DB2 10.1 X64

我认为我需要创建与DB2服务器的连接。请帮帮我。

1 个答案:

答案 0 :(得分:0)

修改
在使db2工作之前,您必须安装libstdc ++依赖项。做

<style>
.editable {
    width: 300px;
    height: 200px;
    border: 1px solid #ccc;
    padding: 5px;
    resize: both;
    overflow: auto;
}
</style>

<div class="editable" contenteditable="true"></div>
<button class="bold">toggle red</button>
<button class="italic">toggle italic</button>

<script>
function toggleRed() {
    var text = $('.editable').text();
    $('.editable').html('<p style="color:red">'+text+'</p>');
}

function toggleItalic() {
    var text = $('.editable').text();
    $('.editable').html("<i>"+text+"</i>");
}

$('.bold').click(function () {
    toggleRed();
});

$('.italic').click(function () {
    toggleItalic();
});
</script>

另外,不要忘记为安装目录设置权限

yum install libstdc++.so.6

创建与IBM DB2的新连接

chmod 777 /<installation dir>

一个例子: -

resource db2_connect ( string $database , string $username , string $password [, array $options ] )

此脚本将输出

<?php
$conn = db2_connect($database, $user, $password);

// Create the test table
$create = 'CREATE TABLE animals (id INTEGER, breed VARCHAR(32),
    name CHAR(16), weight DECIMAL(7,2))';
$result = db2_exec($conn, $create);
if ($result) {
    print "Successfully created the table.\n";
}

// Populate the test table
$animals = array(
    array(0, 'cat', 'Pook', 3.2),
    array(1, 'dog', 'Peaches', 12.3),
    array(2, 'horse', 'Smarty', 350.0),
    array(3, 'gold fish', 'Bubbles', 0.1),
    array(4, 'budgerigar', 'Gizmo', 0.2),
    array(5, 'goat', 'Rickety Ride', 9.7),
    array(6, 'llama', 'Sweater', 150)
);

foreach ($animals as $animal) {
    $rc = db2_exec($conn, "INSERT INTO animals (id, breed, name, weight)
      VALUES ({$animal[0]}, '{$animal[1]}', '{$animal[2]}', {$animal[3]})");
    if ($rc) {
        print "Insert... ";
    }
}
?>

请参阅documentation