sql.Begin
From GMod Wiki
Revision as of 21:13, 2 November 2009 by Crazy Quebecer (Talk | contribs)
| Function | |
| Syntax |
sql.Begin( ) Where is this used? |
| Description: | |
| Used when doing lots of queries at once. | |
| Returns: | nil |
| Part of Library: | Sql |
| Realm: |
|
| BBCode Link: | [b][url=http://wiki.garrysmod.com/?title=Sql.Begin]Sql.Begin [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Examples
| Description | Start a Begin. |
|---|---|
| Used on | |
| Code | sql.Begin() |
| Output | N/A |
Additional Info
- This will cause any queries run after calling this until a Commit is called to not be written to the disk.
- Write to the disk using a Commit.
- Data is not actually saved until you run a Commit.