General::openx
The argument in Read does not correspond to a stream that is open for reading:
Read["DATA"]An open stream can be created from a string using StringToStream:
Module[{s, result},
s = StringToStream["{1,2,3}"];
result = Read[s];
Close[s];
result
]