[APIS-558][PHP]some bug about document

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@331114 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Esen Sagynov 2013-08-12 09:29:58 +00:00
parent 5daf88ae95
commit 5565b10b09

View file

@ -265,8 +265,8 @@ Barkley Charles
<?php
$con = cubrid_connect("localhost", 33000, "demodb", "dba", "");
if ($con) {
cubrid_execute($con,"DROP TABLE if exists doc_content");
cubrid_execute($con,"CREATE TABLE doc_content (doc_content CLOB)");
cubrid_execute($con,"DROP TABLE if exists php_cubrid_lob_test");
cubrid_execute($con,"CREATE TABLE php_cubrid_lob_test (doc_content CLOB)");
$sql = "INSERT INTO php_cubrid_lob_test(doc_content) VALUES(?)";
$req = cubrid_prepare($con, $sql);
@ -287,8 +287,8 @@ if ($con) {
<?php
$con = cubrid_connect("localhost", 33000, "demodb", "dba", "");
if ($con) {
cubrid_execute($con,"DROP TABLE if exists image");
cubrid_execute($con,"CREATE TABLE doc_content (image BLOB)");
cubrid_execute($con,"DROP TABLE if exists php_cubrid_lob_test");
cubrid_execute($con,"CREATE TABLE php_cubrid_lob_test (image BLOB)");
$sql = "INSERT INTO php_cubrid_lob_test(image) VALUES(?)";
$req = cubrid_prepare($con, $sql);