how video file save in mysql db

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rushi78
    New Member
    • Feb 2008
    • 1

    how video file save in mysql db

    hi
    i wana to insert the video file in .swf format into the data base.how can i do that
    reply me
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Originally posted by rushi78
    hi
    i wana to insert the video file in .swf format into the data base.how can i do that
    reply me
    Use a BLOB column where you insert the data into

    However, you really should not do that. Store the video file on disk in a directory, and store the path/name to that video file in a MySQL table in a varchar field.

    Much better than storing binary data directly into the database.

    Ronald

    Comment

    Working...