CONNECTED

From SphereWiki
Revision as of 23:07, 20 September 2014 by EXTREME (talk | contribs) (Created page with "This function will return if sphere is connected to any database. Must be checked in a condition like: '''IF''', '''WHILE''', '''QVAL'''. '''USES''': <DB.CONNECTED> == Exa...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This function will return if sphere is connected to any database.

Must be checked in a condition like: IF, WHILE, QVAL.

USES: <DB.CONNECTED>


Examples

IF <DB.CONNECTED>
    // Sphere is connected to the database.
ELSE
    // Sphere is not connected to the database.
ENDIF