Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Selecting a Video from a Gallery

Sending captured video to MySQL.

I am curious as to how I can store a captured video in a MySQL database instead of locally? Also how would I then display it in my android app?

Juan Ferr
Juan Ferr
13,220 Points

you need to use a BLOB type if you want to store it directy on the database which is not recommended. The best thing to do is to save it on a storage and store the url on the database to reference it......Do not store the base ip of the server in that url string, just what it follows and then on your app you can use a base_url that holds the ip and you concatenate it with what you have on your database