go to post Evgeny Shvarov · Jul 18, 2019 Also, Paul!If you have any solutions on InterSystems Data Platforms you want to advertise you can leverage the power of Open Exchange and submit the applications as well as your company profile - Open Exchange will accumulate traffic to your web site and landing pages. See the examples of Company profiles and Dev tools on Open Exchange.
go to post Evgeny Shvarov · Jul 18, 2019 Hi @Paul Martin !Job opportunities and vacancies are very welcome on the Developer Community.Fill free to make an announcement with Tag Job Opportunity.
go to post Evgeny Shvarov · Jul 18, 2019 @Benjamin De Boe !Transferring a question from YouTube where IRIS NLP could be found in IRIS Community Edition? Could you please help?
go to post Evgeny Shvarov · Jul 17, 2019 Hi Francisco!Very curious of your utility library - do you want to share some on Open Exchange and Github? )
go to post Evgeny Shvarov · Jul 17, 2019 Where have you seen such a global?Keys in global are unique. If you set the value of a global for the same key you'll override the value for the key.Like @Eduard Lebedyuk wrote if you run 3 commands:Set ^Data("Athens") = "5" Set ^Data("Athens") = "6" Set ^Data("Athens") = "7"You'll first have 5, then override it with 6 and end up with value 7 for the key "Athens".
go to post Evgeny Shvarov · Jul 17, 2019 @Sourabh Sethi, very helpful video and good work!But sharing the code in Google Docs? Could you please share it on Github and in ObjectScript? E.g. like in this project?
go to post Evgeny Shvarov · Jul 16, 2019 wow! It has Caché icon? ) cool! Is it possible to add InterSystems IRIS connection option too?
go to post Evgeny Shvarov · Jul 15, 2019 @Ben Spead, @Timothy Leavitt: do you want to share the project on Open Exchange?Is it possible to use IRIS Community Edition with the sample?
go to post Evgeny Shvarov · Jul 10, 2019 Thank you, Marco!Looking forward to seeing your company's IRIS solutions on OEX!
go to post Evgeny Shvarov · Jul 9, 2019 Great video, @Sourabh Sethi!Would be much better if you provide the outline too!
go to post Evgeny Shvarov · Jul 8, 2019 Hi @Guillaume.Rongier ! Thanks for sharing!Could you please submit the demo on Open Exchange too?
go to post Evgeny Shvarov · Jul 1, 2019 Hi Masilu! Could you please submit a new question with the description of the problem?
go to post Evgeny Shvarov · Jun 29, 2019 Actually didn't get what the below method does. Method PropertySetObjectId(id) Do you have an example?
go to post Evgeny Shvarov · Jun 29, 2019 Interesting.SQLComputed property stores the calculated data on disk by default so GetStored works in this case.And doesn't store if Calculated or Transient flags are defined for the property and GetStored throws an error.
go to post Evgeny Shvarov · Jun 29, 2019 Be aware that GetStored doesn't work for Calculated or Transient properties, but does work fro SQLComputed.
go to post Evgeny Shvarov · Jun 29, 2019 Marked this approach as a preferred for Object access if the property is not Calculated and not Transient.