Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ka2

    (@ka2)

    Thank you for your inquiry.

    In the current plugin, the uploading of image files are supported only column of blob type. You will be able to upload common image file if the column type is the size of “mediumblob” or “longblob”.

    For example, the SQL for adding a column of blob type to an existing table is as follows.

    ALTER TABLE {YourTableName} ADD {NewColumnName} longblob comment 'Image File' AFTER {BeforeColumnName};

    You can column added by submitting the above SQL at the “Modify Table” of the table management.

    Note: the uploaded image file to blob type column will be stored directly as binary data in the table of database. Therefore future scaling taking into the storage size of the database must also be considered.

    Thank you,

    Thread Starter omarheneidy

    (@omarheneidy)

    Thanks for help ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pictures Data type’ is closed to new replies.