79538383

Date: 2025-03-27 09:30:11
Score: 1.5
Natty:
Report link

You can create a database column with the type blob CREATE TABLE users(username TEXT, profile_picture BLOB, bio TEXT); and then pass the file path like this INSERT INTO users(username,profile_picture,bio) VALUES(?,LOAD_FILE('file/path.png'),?);

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tyn