diff options
author | Andrey Andreev <narf@devilix.net> | 2015-05-12 11:04:52 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-05-12 11:04:52 +0200 |
commit | abbd31f466ad5b921e37498f7c6d7069bf3255b3 (patch) | |
tree | a1706f669e1897b71453cd72c428bbb843eee829 /user_guide_src/source/database/utilities.rst | |
parent | 5bd7e0188d5a61f3be9a8531531d3103cbb44e66 (diff) | |
parent | c836f2af72536733fa1cc990b46522b9ef16153e (diff) |
Merge pull request #3842 from ftwbzhao/feature/lasttime
[ci skip] Minor userguide corrections
Diffstat (limited to 'user_guide_src/source/database/utilities.rst')
-rw-r--r-- | user_guide_src/source/database/utilities.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/database/utilities.rst b/user_guide_src/source/database/utilities.rst index cc4aeb018..81b949dd7 100644 --- a/user_guide_src/source/database/utilities.rst +++ b/user_guide_src/source/database/utilities.rst @@ -18,7 +18,7 @@ Initializing the Utility Class Load the Utility Class as follows:: - $this->load->dbutil() + $this->load->dbutil(); You can also pass another database object to the DB Utility loader, in case the database you want to manage isn't the default one:: @@ -35,7 +35,7 @@ assigning it directly to ``$this->dbutil``. Once initialized you will access the methods using the ``$this->dbutil`` object:: - $this->dbutil->some_method() + $this->dbutil->some_method(); **************************** Using the Database Utilities |