mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-15 00:41:02 +00:00
While we're at it, escape all the columns in our TDS queries as well. Double
quotes seems to be more standard than square brackets (Sybase and SQL Server both support them). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@126312 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user