User bio
404 bio not found
Member since Nov 24, 2021
Posts:
Replies:
Thank you for this comment, Mark. I had a similar problem which was driving me bonkers and turns out the order does matter as you pointed out. Need to do SetStream() first before setting the OutputFilename and OriginalFilename.
Thank you, Eduard!
Certifications & Credly badges:
Anthony has no Certifications & Credly badges yet.
Global Masters badges:




Followers:
Anthony has no followers yet.
Following:
Anthony has not followed anybody yet.
Would like to add to this. Embedded and Dynamic queries have their place. So picking one over the other really depends upon the problem you're trying to solve.
Embedded is better suited for simple queries. Use when you need to perform non-complex queries with single row result. Can additionally use embedded with cursor for multi-row results.
Dynamic, as it's properly named, is better suited for programmatically formed complex queries with many expected results. In other words, your query isn't or can't be static.
All depends on the requirements and scenario. Picking the appropriate one can help make your code cleaner and easier to read.
*Beginner Tip
One beginner mistake to look out for is ensure you understand which mode your query is using. Display Mode and Logical Mode behave differently and it is a common beginner mistake to code the query for the incorrect mode.