DB()

DB(Familie/Schlüssel)

Liest/setzt einen Wert in der AstDB. Beim Lesen wird der Wert zurückgegeben oder ein leerer String, wenn der Wert nicht existiert. Das Ergebnis ist in der Variable DB_RESULT verfügbar.

; Eintrag open/source setzen und abfragen:
exten => 123,1,Set(DB(open/source)=${ja})
exten => 123,n,Set(var=${DB(open/source)})
exten => 123,n,GotoIf($[[${DB(open/source)} = 1]?opensource:closedsource
)
[Anmerkung]

Interner Hilfetext zu dieser Applikation in Asterisk 1.4: 

  -= Info about function 'DB' =- 

[Syntax]
DB(<family>/<key>)

[Synopsis]
Read from or write to the Asterisk database

[Description]
This function will read from or write a value to the Asterisk database. 
 On a
read, this function returns the corresponding value from the database, o
r blank
if it does not exist.  Reading a database value will also set the variab
le
DB_RESULT.  If you wish to find out if an entry exists, use the DB_EXIST
S
function.

Differenz zum internen Hilfetext in Asterisk 1.2: 

- keine - 

Siehe auch. DB_EXISTS(), DB_DELETE(), DBdeltree()