just explain MYSql ISAM and InnoDB functions. and what is
the diffrent between both. and which is the better in both.
Answer Posted / pooja
MyISAM is a deafult storage engine in MySQL and is mostly in
WEB, data warehousing and other application environments.
InnoDB is also a storage engine in MySQL. Even this is
included by default in MySQL. But this is used for
transaction processing applications and supports a number
of features including ACID transaction support and foreign keys.
In source distributions, you can enable or disable either
engine by configuring MySQL as you like.
Both are best but it depends on the use. And for general
purpose its better to use MyISAM.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is prepare in php?
What are encryption functions in php?
How to write comment in php?
Explain the advantages of using PHP?
Which function is used in php to search a particular value in an array?
What is psr in php?
What is Apache's configuration file typically called?
What language is similar to php?
What is composer install?
Why do we use php?
How many types of array supported in php?
What are soundex() and metaphone() functions in php?
What is the function file_get_contents() useful for?
Explain $_FILES Superglobal Array?
How to execute an sql query? How to fetch its result?