just explain MYSql ISAM and InnoDB functions. and what is
the diffrent between both. and which is the better in both.
Answers were Sorted based on User's Feedback
Answer / suresh
Mysql ISAM is an default storage engine...
And InnoDB supports transactions and foriegn keys
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
What is the difference between include and include_once ? Which is one is good in terms of performance ?
What is a role of a designer in web development. Till what level the designer will do his work. Does he gives the complete html file or the tpl file or he should also include the smarty tag in the tpl file.
Write a function that takes "depth" as argument and return sum of node's data of that depth. For instance, (0) depth 0 / \ (10) (20) depth 1 / \ (40) (50) depth2 If I pass get_sum_by_depth(2) , it would return 90 (i.e. 40 + 50 )
How can use sys time in loop?
What percentage of websites use php?
How does php serialize work?
Tell me how is it possible to know the number of rows returned in result set?
What is an array in php?
How do you put a space in html?
What are the core OOP’s concepts?
What is the best website to learn php?
What is $_session in php?