dect
/
asterisk
Archived
13
0
Fork 0

This was bogus, need to find a better way.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@126319 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
seanbright 2008-06-29 13:20:01 +00:00
parent 76942ba4d3
commit 8530e0fda8
1 changed files with 19 additions and 19 deletions

View File

@ -136,25 +136,25 @@ static int tds_log(struct ast_cdr *cdr)
}
erc = dbfcmd(settings->dbproc,
"INSERT INTO \"%s\" "
"INSERT INTO %s "
"("
"\"accountcode\", "
"\"src\", "
"\"dst\", "
"\"dcontext\", "
"\"clid\", "
"\"channel\", "
"\"dstchannel\", "
"\"lastapp\", "
"\"lastdata\", "
"\"start\", "
"\"answer\", "
"\"end\", "
"\"duration\", "
"\"billsec\", "
"\"disposition\", "
"\"amaflags\", "
"\"uniqueid\""
"accountcode, "
"src, "
"dst, "
"dcontext, "
"clid, "
"channel, "
"dstchannel, "
"lastapp, "
"lastdata, "
"start, "
"answer, "
"[end], "
"duration, "
"billsec, "
"disposition, "
"amaflags, "
"uniqueid"
") "
"VALUES "
"("
@ -317,7 +317,7 @@ static int mssql_connect(void)
goto failed;
}
if (dbfcmd(settings->dbproc, "SELECT 1 FROM \"%s\"", settings->table) == FAIL) {
if (dbfcmd(settings->dbproc, "SELECT 1 FROM [%s]", settings->table) == FAIL) {
ast_log(LOG_ERROR, "Unable to build query while verifying the existence of table '%s'\n", settings->table);
goto failed;
}