What is the difference between mysql_fetch_array and
mysql_fetch_object?

Answers were Sorted based on User's Feedback



What is the difference between mysql_fetch_array and mysql_fetch_object?..

Answer / subrat

mysql_fetch_array ? Fetch a result row as an associative
ARRAY, a numeric array, or both
mysql_fetch_object ? Fetch a result row as an OBJECT

Is This Answer Correct ?    25 Yes 2 No

What is the difference between mysql_fetch_array and mysql_fetch_object?..

Answer / sumit

mysql_fetch_object : will return the results from database
as objects. fields will be accessible like an objects
i.e $result->name

mysql_fetch_array : will return the results from database as
array. fields will be accessible like in objects
i.e $result[name]

Is This Answer Correct ?    5 Yes 1 No

What is the difference between mysql_fetch_array and mysql_fetch_object?..

Answer / jeevabala

mysql_fetch_array : fetch the result as an array
mysql_fetch_object : fetch the result as a object

Is This Answer Correct ?    1 Yes 0 No

What is the difference between mysql_fetch_array and mysql_fetch_object?..

Answer / abhay kumar

mysql_fetch_array display all matching record from table as
an array while mysql_fetch_object dispaly first matching
from table as ab object

Is This Answer Correct ?    6 Yes 9 No

Post New Answer

More MySQL Interview Questions

How to create table show example

0 Answers  


What is a trigger in mysql?

0 Answers  


How to present a past time in hours, minutes and seconds?

0 Answers  


Is microsoft sql same as mysql?

0 Answers  


How do you create a primary key?

0 Answers  






How many rows can mysql hold?

0 Answers  


What is unique key in mysql?

0 Answers  


What is mysql connector used for?

0 Answers  


What are the drivers in MySQL?

1 Answers  


What is difference b/w composit key n primary key and forigion key?

4 Answers  


What are the differences between mysql vs sql server?

0 Answers  


What is triggers and how it can be used in mysql?

0 Answers  


Categories