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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Tue May 07 20:01:32 2024 UTC