The more information I see on C-Omega the more intersted in it I get. Check out Rick Byers recent post on “Comparing a simple select statement in C-omega vs. ADO.NET”
rows = select * from DB.Employees where City == city;
foreach( row in rows ) {
string name = row.LastName.Value;
int id = row.EmployeeID.Value;
Console.WriteLine( id.ToString() + ": " + name);
}