php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #24697 odbc can not return accurate result when we handle excel file use odbc
Submitted: 2003-07-17 20:50 UTC Modified: 2003-07-23 22:29 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: tty3000 at hotmail dot com Assigned:
Status: No Feedback Package: ODBC related
PHP Version: 4.3.2 OS: win 2000
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
32 - 5 = ?
Subscribe to this entry?

 
 [2003-07-17 20:50 UTC] tty3000 at hotmail dot com
Description:
------------
odbc can not return accurate result when we handle excel file use odbc.
In excel file,we handle "NUMBER" nor "VARCHAR" ,this question appear.
  we find ,this question appear when "0878-13420987" or "0878_13420987".

Reproduce code:
---------------
 	$user = '';
	$pass = '';
	$host = 'customerxls';
	$phptype='odbc';
	//database name in excel file??[main],[con_data],[con_person],[detail_data]
	$dsn = "$phptype://$user:$pass@$host";
$type=main;
	$connection=@odbc_connect($host,"","");
			$query="select a,b,d from $type";
				
				$result=@odbc_do($connection,$query);


		
    				$query_count="select count(*) from $type";  

	echo "<br>".$query."<br>";
	


	$col=count($title_array);
	for($i=0;$i<$col;$i++)
		echo $title_array[$i]."\t";
	echo "<br>"; 

	while (@odbc_fetch_row($result)){  
		echo odbc_result($result,a)."<---->".odbc_result($result,b)."<---->".odbc_result($result,y)."<br>";
		//echo $row[0]."<br>";
		
	}

 
    

Expected result:
----------------
1.0<---->China<---->3395
2.0<---->China<---->13308
2.0<---->China<---->


Actual result:
--------------
1.0<---->China<---->3395
2.0<---->China<---->13308
3.0<---->China<---->


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-07-17 22:47 UTC] kalowsky@php.net
I'm not quite sure I follow the bug you're reporting here.  Can you (with another ODBC application) get the results you're expecting?  I don't see how a query like that can fail as it's upto the logic of the backing DB and not PHP to return the result set.
 [2003-07-23 22:29 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: Tue Apr 16 13:01:30 2024 UTC