What are the differences between MySQL_fetch_array(),
MySQL_fetch_object(), MySQL_fetch_row()?
Answer Posted / vel
when u r using mysql_fetch_object i will first matching
record.
u can access the result set by column name of that record.
when u r using mysql_fetch_array i will fetch all the
matching records from the table.
u can access the result set by index as well as colum name
of that record.
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How do I export mysql query results to excel?
How do I rename a table in mysql workbench?
What is key in mysql?
Is mysql same as mariadb?
What is msql?
all the queries used in sql
What command is used to delete the data from the table without deleting the table structure?
How do you stop an access query?
How can you retrieve a portion of any column value by using a select query?
How do I quit mysql?
How do I find my mysql username and password?
What are the 'mysql' command line arguments?
How would you get the current date in mysql?
How can I remotely connect to mysql database?
i made a table whih contain a column "Photo" with image data type and i want to insert the byte of a picture present in my hardisk using insert statement in that colum... so what will be my insert statement?