php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #18002 inserted value too large for column
Submitted: 2002-06-26 16:16 UTC Modified: 2002-06-26 18:36 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: qingping at hotmail dot com Assigned:
Status: Not a bug Package: OCI8 related
PHP Version: 4.1.2 OS: sun4u sparc SUNW,Ultra-5_10Syste
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: qingping at hotmail dot com
New email:
PHP Version: OS:

 

 [2002-06-26 16:16 UTC] qingping at hotmail dot com
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();


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-26 18:28 UTC] qingping at hotmail dot com
Problem solved
 [2002-06-26 18:36 UTC] sniper@php.net
Not a bug in PHP, I assume? :)
Just curious..what was the problem after all?

 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Feb 05 11:01:31 2025 UTC