15.0k views
5 votes
When you have a profile picture in your database, which data type do you select?

A) Text
B) Integer
C) Blob (Binary Large Object)
D) Date/Time

User Nicolas
by
7.3k points

1 Answer

2 votes

Final answer:

The data type you select for a profile picture in your database is Blob (Binary Large Object).

Step-by-step explanation:

When you have a profile picture in your database, the data type you would select is Blob (Binary Large Object). A Blob data type is used to store large amounts of binary data, such as images or files. By selecting Blob as the data type for a profile picture, you can store the image data directly in the database.

User Sker
by
7.1k points