From:             [EMAIL PROTECTED]
Operating system: Linux 2.2, Solaris 2.6
PHP version:      4.0.6
PHP Bug Type:     OCI8 related
Bug description:  ocibindbyname strips trailing spaces

When inserting text using named binds, PHP will strip trailing spaces. The
same query on the same database using the same Oracle client libraries.
(All Oracle 8.1.6)

$db = ocilogon("u", "p", "sid");
$st = ociparse($db, "insert into test values (:id, :text)");
ocibindbyname($st, ":text", &$text, 2000);
ocibindbyname($st, ":id", &$id, 22);
$text = "  this line has spaces   ";
$node_id = 666;
ociexecute($st);

-- 
Edit bug report at: http://bugs.php.net/?id=14013&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to