I guess a different or easier way of adding entries to your mangos database, will depend on how you store the original data that you use to populate each new entry.
I work on a number of different 'projects', so on occasion I will have raw data to add, stored in text or CSV files. The data might look like:
1,235,247,0,247,0
or
1 235 247 0 247 0
OR
1,235,247,0,"big stick",0
or
1 235 247 0 'big stick' 0
When this is the case, I tend to use a text parsing tool like
To view the content, you need to sign in or register
to put the data into a SQL usable format, by adding the necessary spaces and brackets etc. giving me:
(1, 235, 247, 0, 247, 0)
OR
(1, 235, 247, 0, "big stick", 0)
and having it place INSERT commands in front of the data and a semicolon at the end, giving me:
INSERT INTO `my_table` VALUES (1, 235, 247, 0, 247, 0);
OR
INSERT INTO `my_table` VALUES (1, 235, 247, 0, "big stick", 0);
Once I have a number of these SQL commands, I can do an import or run them as SQL.
For me this is easier, but I will tell you now that many text replacement tools can take a while to set up to properly handle your data. Basically you will need to get used to another tool, and it may not be worth it for you.