php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #17063 Can't able to insert long datatype into oracle8 database
Submitted: 2002-05-07 00:28 UTC Modified: 2003-07-04 02:04 UTC
Votes:3
Avg. Score:4.0 ± 0.8
Reproduced:2 of 2 (100.0%)
Same Version:1 (50.0%)
Same OS:0 (0.0%)
From: sureshkb at orillion dot com Assigned:
Status: No Feedback Package: OCI8 related
PHP Version: 4.1.2 OS: Windows 2000
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: sureshkb at orillion dot com
New email:
PHP Version: OS:

 

 [2002-05-07 00:28 UTC] sureshkb at orillion dot com
Hi,
I am trying to insert the long datatype into oracle8 database but it is throwing exception.
bye,
Suresh

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-05-07 00:38 UTC] sureshkb at orillion dot com
Here small change i am not able to insert the long string i.e more than 50k but i can able in insert 1k string.
Thanks,
Suresh
 [2002-05-07 03:05 UTC] derick@php.net
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

 [2002-05-07 04:38 UTC] sureshkb at orillion dot com
<?php
  include("TempStr.php");
function gendbins1($dbn,$tbn,$cols,$vals){
  global $info;
  global $debug;
	$result;
	
	$info['db']['proto'] = "TCP";
	$info['db']['ip'] = "192.168.1.133";
	$info['db']['port'] = "1521";
	$info['db']['sid'] = "ovdb";
	$info['db']['user'] = "logdata";
	$info['db']['pass'] = "logdata";
	$info['db']['oraspecs']="(DESCRIPTION = (ADDRESS = (PROTOCOL = " . $info['db']['proto'] . ")(HOST = " . $info['db']['ip'] . ")(PORT = " . $info['db']['port'] . "))(CONNECT_DATA = (SID = " . $info['db']['sid'] . ")))";

  $c1 = ociplogon($info[$dbn]['user'], $info[$dbn]['pass'], $info[$dbn]['oraspecs']);
  $q1 = "INSERT INTO $tbn $cols values :valdef";
	echo"<P>Query toinsert user is - $q1";
  $s1 = ociparse($c1, $q1);
  ocibindbyname($s1, ":valdef", &$vals);
  if($debug){$result = ociexecute($s1);} else {$result = @ociexecute($s1);};
  ocicommit($c1);
  echo "The result from ins ==== $result";
};
$col=('FILTER');
$val="('$str')";
gendbins1('adm','XMLLONG',$col,$val);

?>


here the code i am using and $str is in "TempStr.php" file and i am able to inserting the small strings(Aprox 2k) and i could not able to insert the big string. My table have only one column and datatype is "long". My apache server and database are not in same mechine.  This is the information i am providing.
Bye
Suresh
 [2003-01-29 08:26 UTC] maxim@php.net
Moving this to OCI8, which is where OCIPLogon() belongs.
(this mess between the two Oracle extensions gotta end someday .... argh..)
 [2003-07-04 02:04 UTC] sniper@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 22:01:28 2024 UTC