Hello All, I am trying to create a database table using pharo, sqlite. I have taken the argument column names and data type as dictionary.
For e.g. "a Dictionary(#DOB->Date #Name->String #Salary->Number )". Now I need to parse over it using keysAndValuesDo: to create a string from it "DOB Date,Name String,Salary Number" which would be used in query. I am not able to concatenate them correctly. Could you suggest some idea. Harshit
