home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / CMCD0703.ISO / Software / Freeware / Programare / bugzero / WEB-INF / classes / sql / get_file.sql < prev    next >
Encoding:
Text File  |  2003-02-01  |  165 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.