Garry's Mod Wiki

Revision Difference

sql#523845

<cat>libraryfunc</cat>⤶ The SQL library allows you to access powerful database software included with Garry's Mod. It is the preferred and fastest method of storing large amounts of data. The database is located in sv.db serverside and cl.db clientside, both in the Garry's Mod base folder. SQL is a whole scripting language in itself although relatively simple, it's something you'll need to read up on before using this library. <type name="sql" category="libraryfunc" is="library">⤶ <summary>The SQL library allows you to access powerful database software included with Garry's Mod. It is the preferred and fastest method of storing large amounts of data. The database is located in sv.db serverside and cl.db clientside, both in the Garry's Mod base folder. SQL is a whole scripting language in itself although relatively simple, it's something you'll need to read up on before using this library. Known GMod SQL settings: * No ATTACH and DETACH operations (SQLITE_OMIT_ATTACH = 1) * No Virtual Tables (SQLITE_OMIT_VIRTUALTABLE = 1) * Temp files are stored in memory (SQLITE_TEMP_STORE = 3) * No VACUUM operation* No `ATTACH` and `DETACH` operations (`SQLITE_OMIT_ATTACH = 1`) * No Virtual Tables (`SQLITE_OMIT_VIRTUALTABLE = 1`) * Temp files are stored in memory (`SQLITE_TEMP_STORE = 3`) * No `VACUUM` operation</summary>⤶ </type>⤶