From e334c472fb4be44feec3a73402fc4a2b062cbfc0 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 21 Oct 2006 19:44:22 +0000 Subject: --- user_guide/database/transactions.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/database/transactions.html') diff --git a/user_guide/database/transactions.html b/user_guide/database/transactions.html index ef1f1a6e6..4677ed6ff 100644 --- a/user_guide/database/transactions.html +++ b/user_guide/database/transactions.html @@ -12,7 +12,7 @@ @@ -69,8 +69,8 @@ Transactions

Code Igniter's database abstraction allows you to use transactions with databases that support transaction-safe table types. In MySQL, you'll need to be running InnoDB or BDB table types rather then the more common MyISAM. Most other database platforms support transactions natively.

-

If you are not familiar with -transactions we recommend you find a good online resource to learn about them for your particular database. The information below assumes you +

If you are not familiar with +transactions we recommend you find a good online resource to learn about them for your particular database. The information below assumes you have a basic understanding of transactions.

@@ -80,7 +80,7 @@ have a basic understanding of transactions. because it greatly simplifies the process of running transactions. In most cases all that is required are two lines of code.

Traditionally, transactions have required a fair amount of work to implement since they demand that you to keep track of your queries -and determine whether to commit or rollback based on the success or failure of your queries. This is particularly cumbersome with +and determine whether to commit or rollback based on the success or failure of your queries. This is particularly cumbersome with nested queries. In contrast, we've implemented a smart transaction system that does all this for you automatically (you can also manage your transactions manually if you choose to, but there's really no benefit).

-- cgit v1.2.3-24-g4f1b