I have a dtd file which describes what columns my columns should have.
The problem is, it gives no info on what data type I should use for the columns, i.e whether INT, Varchar, or Text, and no info on the max length of the columns. In most places it says #PCDATA
which I believe simply means mixed data.
Is there a way for me to find out what data type and max lenghts I should use, or should I simply make a table full of Varchar (255)
s?