I want to know how to store video into a MySql database using Java?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Amit yadav2010
    New Member
    • Aug 2010
    • 1

    I want to know how to store video into a MySql database using Java?

    I am using java and mysql database and i want to know how to store video in mysql?
    If anyone know the solution of it. Please let me know it.
    Last edited by Frinavale; Aug 31 '10, 06:53 PM. Reason: Added the question to the thread.
  • Meetee
    Recognized Expert Contributor
    • Dec 2006
    • 928

    #2
    You can use Blob type to store video in MySQL. Read file and convert into BLOB and then store in DB.

    More convenient ways are to store the URL of video files in DB rather then storing full videos or to store videos on disk in some directory and store path (varchar) in database.

    Comment

    Working...