Learning Documentation Community Open Exchange Ideas Portal Global Masters Certification Partner Directory Startup Hub
Developer Community
  • Posts
    • InterSystems Official
    • Articles
    • Questions
    • Announcements
    • Discussions
    • Tags
  • Events
    • Tech Article Contest
    • Programming Contest
    • InterSystems Ideas Contest
    • Event Calendar
  • Products
    • InterSystems IRIS
    • InterSystems IRIS for Health
    • HealthShare
    • TrakCare
    • Caché
    • Ensemble
    • InterSystems Analytics (DeepSee)
    • InterSystems Text Analytics (iKnow)
  • Jobs
    • Job Opportunity
    • Job Wanted
  • Members
  • About
    • About Us
    • FAQ
    • Feedback
    • Report an Issue
    • Share an Idea
    • Code of Conduct
    • Contact Us

EN

Search by posts, members, tags
Language
EN|
ESPTJPCNFREN
  • Profile page
  • Posts (313)
  • Replies (3,523)
  • Mentions (375)
  • Official certification & Credly badges (4)
  • Global Masters badges (90)
  • Followers (49)
  • Following (0)
AllAccepted answers
    go to post
Eduard Lebedyuk · Apr 23, 2020

VisitTime  (any property really) should be stored before property parameter change.

Can you try to recreate the data?

0 0 https://community.intersystems.com/post/how-use-classparameters?page=65#comment-120891
    go to post
Eduard Lebedyuk · Apr 23, 2020

You should set it as your property parameter:

Class MyClass {

Property CreatedOn As %TimeStamp(XMLTIMEZONE  = "IGNORE");

}

In runtime the behavior for your property CreatedOn would be IGNORE.

0 0 https://community.intersystems.com/post/how-use-classparameters?page=65#comment-120866
    go to post
Eduard Lebedyuk · Apr 22, 2020

Offtopic but generic JDBC provider for SQLAlchemy has been discussed for years in Python community but nothing has been done.

0 0 https://community.intersystems.com/post/insert-panda-dataframe-intersystems-iris-table?page=65#comment-120821
    go to post
Eduard Lebedyuk · Apr 22, 2020

Both suggested approaches offer a tight in-process way of InterSystems IRIS - Python integration.

I will show some live examples of bidirectional InterSystems IRIS -  Python integration in Best Practices for in-platform AI/ML Webinar.

1 0 https://community.intersystems.com/post/insert-panda-dataframe-intersystems-iris-table?page=65#comment-120816
    go to post
Eduard Lebedyuk · Apr 22, 2020

Use class queries. They are colored.

0 0 https://community.intersystems.com/post/sql-statement-highlighting?page=65#comment-120811
    go to post
Eduard Lebedyuk · Apr 21, 2020

You can use PythonGateway or IRIS Native for Python to do that.

PythonGateway can retrieve dataframe (any object really) as a JSON.

Here's a corresponding discussion on the SQL side of things.

0 0 https://community.intersystems.com/post/insert-panda-dataframe-intersystems-iris-table?page=65#comment-120746
    go to post
Eduard Lebedyuk · Apr 20, 2020

Use Dynamic Gateway for Java. Does not require classes generation at all.

1 0 https://community.intersystems.com/post/how-add-pdfbox-2x-jar-ensemble?page=65#comment-120626
    go to post
Eduard Lebedyuk · Apr 16, 2020

Well, %Collection classes are the implementation of these constructs:

  • Property X As List Of Type
  • Relationships

You can call their methods but do not explicitly create objects of these classes.

1 0 https://community.intersystems.com/post/librarylistofdatatypes-list-conversion?page=65#comment-120276
    go to post
Eduard Lebedyuk · Apr 16, 2020

%Collection classes are internal and not to be used.

0 0 https://community.intersystems.com/post/librarylistofdatatypes-list-conversion?page=65#comment-120256
    go to post
Eduard Lebedyuk · Apr 16, 2020

You can request new features/enhancements in WRC tickets.

0 0 https://community.intersystems.com/post/librarylistofdatatypes-list-conversion?page=65#comment-120236
    go to post
Eduard Lebedyuk · Apr 15, 2020

There is actually. %GetSerial method builds a $lb from %ListOfDataTypes and %SetSerial does the reverse.

Both of these methods are private though. You can subclass %ListOfDataTypes and publish them.

2 0 https://community.intersystems.com/post/librarylistofdatatypes-list-conversion?page=65#comment-120196
    go to post
Eduard Lebedyuk · Apr 15, 2020

I advice solving your problem by tightening security.

Your app user should have access only to the tables needed for the application to run.

If the user doesn't have any additional/admin roles, he won't see any other tables.

1 0 https://community.intersystems.com/post/how-do-i-connect-database-using-jdbc-filter?page=65#comment-120171
    go to post
Eduard Lebedyuk · Apr 15, 2020

I think fairly straightforward approach works best

set l = ##class(%ListOfDataTypes).%New()
do l.Insert(1)
do l.Insert(2)
do l.Insert(4)
set lb = ""
for i=1:1:l.Count() { set lb = lb _ $lb(l.GetAt(i)) }
zw lb
>lb=$lb(1,2,4)
1 0 https://community.intersystems.com/post/librarylistofdatatypes-list-conversion?page=65#comment-120166
    go to post
Eduard Lebedyuk · Apr 9, 2020

Consider using REST. Creating REST in InterSystems Cache 2017.2 is very easy.

0 0 https://community.intersystems.com/post/create-csp-page-datatable?page=65#comment-119661
    go to post
Eduard Lebedyuk · Apr 9, 2020

@Alexey Maslov, @Alexander Koblov RHEL8 is supported starting with InterSystems IRIS 2020.1.

0 0 https://community.intersystems.com/post/linux-distro-recomendation?page=65#comment-119601
    go to post
Eduard Lebedyuk · Apr 8, 2020

String limit is 3 641 144 so 40 000 symbols is quite okay for a string.

0 0 https://community.intersystems.com/post/how-use-base64-encrypt-string-exceeds-maximum-length-string-type?page=65#comment-119566
    go to post
Eduard Lebedyuk · Apr 6, 2020

How do you import an HL7 Schema from ObjectScript?

You can call any method with Invoke.

I'm not aware of anything HL7 specific in %Installer, but maybe HealthShare has something.

0 0 https://community.intersystems.com/post/deploying-applications-intersystems-cache-installer?page=65#comment-119391
    go to post
Eduard Lebedyuk · Apr 3, 2020

11:00 EDT.

0 0 https://community.intersystems.com/post/online-meetup-iris-programming-contest-winners?page=65#comment-119271
    go to post
Eduard Lebedyuk · Apr 1, 2020

I suppose I can have one Id column and several col1, col2 ..., colN columns, so losing the names.

0 0 https://community.intersystems.com/post/use-table-object-part-sql-query?page=65#comment-119171
    go to post
Eduard Lebedyuk · Apr 1, 2020

Interesting! Tank you!

I can also use PPG for runtime storage.

0 0 https://community.intersystems.com/post/use-table-object-part-sql-query?page=65#comment-119161
  • first
  • ‹ previous
  • …
  • 64
  • 65
  • 66
  • 67
  • 68
  • …
  • next ›
  • last
Eduard Lebedyuk
@Eduard.Lebedyuk
Senior Cloud Architect at InterSystems
MOD
Follow
Open Exchange profile

User statistics

Posts
313
Replies
3.5K
Likes
2.3K
Applications
39
Badges
90
Followers
49
People reached
328.2K
Accepted answers
788
  • Privacy & Terms
  • Guarantee
  • Section 508
  • Contest Terms
  • Cookies Settings
© 2025 InterSystems Corporation, Cambridge, MA. All rights reserved.

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up