Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Is a Transaction
What Is a Transaction? - MySQL FAQs - Transaction Management: Commit or Rollback
✍: FYIcenter.com
A transaction is a logical unit of work requested by a user to be applied to the database objects. MySQL server introduces the transaction concept to allow users to group one or more SQL statements into a single transaction, so that the effects of all the SQL statements in a transaction can be either all committed (applied to the database) or all rolled back (undone from the database).
The transaction concept only works on tables that use transaction-safe storage engines, like InnoDB and BDB. For transaction-unsafe storage engines, like MyISAM, transaction will be ignored.
2007-05-11, 4707👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - Is versioning applicable to private assemblies? Versioning concept is onl...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
Where are all .NET Collection classes located ? System.Collection namespace has all the collection c...
How can I implement a thread-safe JSP page? You can make your JSPs thread-safe by having them implem...
Can a variable be both const and volatile? Yes. The const modifier means that this code cannot chang...