stored procedures - writing logic to store data in Mysql to store Metadata of Files -
Lemm explain this scenario: I need to fetch all the metadata of the files, that is, the title, author, subject .. and Custom Attributes (Custom attributes have not been fixed, they are not fixed and can be of any number).
Now to store this Struvture I've designed a DB: MainTable: FileID, FileName, Title, Author, Theme
and to store custom properties (As numbers and names are not fixed)
(Store custom attribute names) Table AttrType: AttrID, AttrName, AttrType (string or number)
(Store custom attribute value ) And table entry: fileID, attree, attrivue
Now I write all the meta files and I have to write some arguments, so that I can put the appropriate data in the appropriate table. I am totally stucked, do not know where and how to start That can help me
I will be very grateful.
To do these things, you need an external program in some programming languages to store a database data , Not general purpose programming language such as Java, Python or C.
Comments
Post a Comment