|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-26 18:28 UTC] qingping at hotmail dot com
[2002-06-26 18:36 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 13:00:01 2025 UTC |
when insert a lot of rows, sometimes got error, and found not really the value is too large for the column: 2 OCIStmtExecute: ORA-01401: inserted value too large for column /usr/local/lib/php/DB/oci8.php 149 Array ----------------------------------------- $sql = "insert into Emails(email, URL, Status, createdDt)"; $sql .= "values ('$email','$URL','$status','$date')"; $res = $db->query($sql); if (DB::isError($res) ){ die($res->getMessage()); } $result = $db->commit();