CmisSync.Lib.Database.Database.GetFilePath C# (CSharp) 메소드

GetFilePath() 공개 메소드

path field in files table for id
public GetFilePath ( string id ) : string
id string
리턴 string
        public string GetFilePath(string id)
        {
            Dictionary<string, object> parameters = new Dictionary<string, object>();
            parameters.Add("id", id);
            return Denormalize((string)ExecuteSQLFunction("SELECT path FROM files WHERE id=@id", parameters));
        }