home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / bugzero / WEB-INF / classes / sql / get_file.sql < prev    next >
Encoding:
Text File  |  2003-01-31  |  156 b   |  10 lines

  1. # get the attached file according to the filename
  2. SELECT 
  3.   filename,
  4.   content_type,
  5.   file_content
  6. FROM $PROJECT_file 
  7. WHERE trail_id=?
  8.   AND filename=?
  9.  
  10.