Re: STRING length



markww wrote:
Add_Record("Mark", "555-555-5555", "123 main street");

expected private type "Ada.Strings.Unbounded.Unbounded_String"

As the message says, Unbounded_String is a private type. String literals are only defined for string types. You need to supply values of type Unbounded_String here. You might want to spend a moment reviewing the operations in Ada.Strings.Unbounded to see how to do that.

--
Jeff Carter
"Help! Help! I'm being repressed!"
Monty Python & the Holy Grail
67
.