SitePoint Sponsor

User Tag List

Results 1 to 5 of 5

Thread: DUMPFILE

  1. #1
    SitePoint Wizard tgavin's Avatar
    Join Date
    Feb 2003
    Location
    FL
    Posts
    1,041
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    DUMPFILE

    I have several fields, one of which is a BLOB. I want to SELECT the fields and return the results to the browser, and then dump the contents of the BLOB into a file on the server. I'm struggling with how to do this in one query. The on_linear_array field is the BLOB.

    SELECT
    id
    ,model_type
    ,on_linear_array
    INTO DUMPFILE
    'dump.txt'
    FROM station

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,463
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    return the results to the browser??

    isn't there an application language in between mysql and the browser? like php or something?
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  3. #3
    SitePoint Wizard tgavin's Avatar
    Join Date
    Feb 2003
    Location
    FL
    Posts
    1,041
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ha! Yes, Mr. Literal, I'll be using PHP to print the results to the browser.

  4. #4
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,463
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    okay, so php retrieves the data from the database and saves the blob to the file

    i don't do php or i'd help you further
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  5. #5
    SitePoint Wizard tgavin's Avatar
    Join Date
    Feb 2003
    Location
    FL
    Posts
    1,041
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The query is the problem; it's putting all of the results into the file. I figured I'd written it incorrectly. Hmmm...

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •