I'm participating in the Developing with InterSystems Objects and SQL with Joel Solon. The course is very nice and I will share with you some tips I got during the training. Tips presented in the day 3:
- You can see your class catalog using %Dictionary classes and see your sql objects into INFORMATION_SCHEMA table.
- Is possible use SQL inside your ObjectScript methods using Dynamic SQL or Embedded SQL.
- You can pass parameters into Dynamic SQL string using ? (eg.: where country = ?) and pass parameters to Embedded SQL using colon (ed.: where country = :variable).


