| 156 |
|
|
| 157 |
sql = "select * from innd_conf order by `group`"; |
sql = "select * from innd_conf order by `group`"; |
| 158 |
|
|
| 159 |
RS.Open(CRecordset::snapshot,sql,CRecordset:forwardOnly | CRecordsset::readOnly); |
RS.Open(CRecordset::snapshot,sql,CRecordset::forwardOnly | CRecordset::readOnly); |
| 160 |
while(!RS.IsEOF()) |
while(!RS.IsEOF()) |
| 161 |
{ |
{ |
| 162 |
RS.GetFieldValue("group",dbVar,SQL_C_CHAR); |
RS.GetFieldValue("group",dbVar,SQL_C_CHAR); |
| 355 |
} |
} |
| 356 |
catch(CException* e) |
catch(CException* e) |
| 357 |
{ |
{ |
| 358 |
char strErrMsg[256]; |
char strErrMsg[1024]; |
| 359 |
e->GetErrorMessage(strErrMsg,256); |
e->GetErrorMessage(strErrMsg,1024); |
| 360 |
syslog << logfile::log_head << "Error in cmd_ihave() [" << strErrMsg << "]" << endl; |
syslog << logfile::log_head << "Error in cmd_ihave() [" << strErrMsg << "]" << endl; |
| 361 |
e->Delete(); |
e->Delete(); |
| 362 |
return -1; |
return -1; |
| 398 |
} |
} |
| 399 |
return 0; |
return 0; |
| 400 |
} |
} |
| 401 |
|
|
| 402 |
|
bool innd::check_priv(void) |
| 403 |
|
{ |
| 404 |
|
return this->access.get; |
| 405 |
|
} |