mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
[APIS-558][PHP]some bug about document
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@331113 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
095653e0ce
commit
5daf88ae95
1 changed files with 4 additions and 0 deletions
|
@ -265,6 +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)");
|
||||
$sql = "INSERT INTO php_cubrid_lob_test(doc_content) VALUES(?)";
|
||||
$req = cubrid_prepare($con, $sql);
|
||||
|
||||
|
@ -285,6 +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)");
|
||||
$sql = "INSERT INTO php_cubrid_lob_test(image) VALUES(?)";
|
||||
$req = cubrid_prepare($con, $sql);
|
||||
|
||||
|
|
Loading…
Reference in a new issue