Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Util::Database::DeleteFile ( CString  path  )  [inline]

Definition at line 167 of file Database.h.

References Impala::Util::Channel::Buffer(), mDataChannel, and Impala::Util::Channel::SendRequest().

00168     {
00169         if (mDataChannel)
00170         {
00171             char* buf = mDataChannel->Buffer();
00172             sprintf(buf, "deletefile \"%s\"\0", path.c_str());
00173             mDataChannel->SendRequest(strlen(buf)+1);
00174         }
00175         else
00176         {
00177             unlink(path.c_str());
00178         }
00179     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:24:12 2011 for ImpalaSrc by  doxygen 1.5.1