application doc update

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6992 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-11-07 22:01:22 +00:00
parent 4eb2c0d832
commit f09c6bc78e
53 changed files with 115 additions and 132 deletions

View File

@@ -48,24 +48,23 @@ static char *tdesc = "Database access functions for Asterisk extension logic";
static char *g_descrip =
" DBget(varname=family/key[|options]): Retrieves a value from the Asterisk\n"
"database and stores it in the given variable. Always returns 0. \n"
" The option string may contain zero or the following character:\n"
" 'j' -- jump to +101 priority if the file requested family/key isn't found.\n"
"database and stores it in the given variable.\n"
" The option string may contain the following character:\n"
" 'j' -- jump to +101 priority if the requested family/key isn't found.\n"
" This application sets the following channel variable upon completion:\n"
" DBGETSTATUS The status of the attempt to add a queue member as a text string, one of\n"
" DBGETSTATUS The status of the attempt as a text string, one of\n"
" FOUND | NOTFOUND \n";
static char *p_descrip =
" DBput(family/key=value): Stores the given value in the Asterisk\n"
"database. Always returns 0.\n";
"database.\n";
static char *d_descrip =
" DBdel(family/key): Deletes a key from the Asterisk database. Always\n"
"returns 0.\n";
" DBdel(family/key): Deletes a key from the Asterisk database.\n";
static char *dt_descrip =
" DBdeltree(family[/keytree]): Deletes a family or keytree from the Asterisk\n"
"database. Always returns 0.\n";
"database.\n";
static char *g_app = "DBget";
static char *p_app = "DBput";