-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Type of issue:
Db.Sql documentation is not clear enough. It suggests, that it's possible to use whole Starcounter SQL, but does not explain how to use particular parts. For example:
SELECT e, d FROM Employee e JOIN Department d ON e.Department = dworks fine in Admin, but how to make it useful inDb.SQL? What it should return and how to access it?SELECT e.LastName, e.FirstName FROM Employee e FETCH 5- how to use it inDb.SQL?
The question is what if we are returning more than one object in a row (ex. 1) or it's not an object at all (ex. 2). Users expect that all of our SQL works fine in DB.Sql, but it's not obvious how to use it.
Link to relevant page:
Reactions are currently unavailable