- Log in to post comments
It's like it was done on purpose 馃榿
- Log in to post comments
Wow, lots of interesting stuff happened last year!
- Log in to post comments
I'm very honored to be among the best authors of the Developer Community in different nominations! Congratulations to everyone!
- Log in to post comments
Congratulations! Well done everyone!
- Log in to post comments
Merry Christmas everyone and Happy New Year! 馃巹馃巺
- Log in to post comments
And once again I'm a Language luminary:.png)
Still, 6 articles aren't too bad 馃槈
- Log in to post comments
Congratulations! And to many more successful years!
- Log in to post comments
Awesome! I'm 12th 馃帀
- Log in to post comments
I see someone is on the 3rd place...
- Log in to post comments
Thank you for this suggestion.
PS. Being fluent in Russian won't help in this case, because the interface is in Ukrainian 馃榿
- Log in to post comments
Wow! Something new and very exciting!
- Log in to post comments
Oh, sounds exciting! I'm so going to try to participate!
- Log in to post comments
Yeeeessss! Great news, can't wait to spend my points on stuff!
- Log in to post comments
Congratulations to all the participants!
- Log in to post comments
Congratulations @Benjamin De Boe 馃 Thanks for all the good things you do for the Community! I'm eager to get some pointers regarding the travels 馃槣
- Log in to post comments
Congratulations to the winner! This was an interesting experience 馃榿 I hope we will get more sweepstakes like this!
- Log in to post comments
Congratulations to all the contestants! Well done!!!
- Log in to post comments
I think the DC AI is the most helpful with answering more straightforward questions. For example, on DC every once in a while there's a question on converting dates (for example): https://community.intersystems.com/ask-dc-ai?question_id=129616
Most short questions like this can be answered by AI and if the answer is wrong than it's worth posting a question on a Developer Community.
- Log in to post comments
Well deserved! Your omnipotent presence is always felt on the Community 馃榿
- Log in to post comments
Thanks a lot for the quick feedback! Now I will know what to do if something goes awry 馃槈
- Log in to post comments
Another way
WRITE $ZSTRIP($ZDATETIME($HOROLOG, 8), "*P")- Log in to post comments
Congratulations to the winners! Well done!
- Log in to post comments
Well done, guys! Keep up the good work!
- Log in to post comments
You can use two conversions:
$zdate($zdateh("25/03/1988", 4), 8).png)
- Log in to post comments
Nice to get all the news in one post!
- Log in to post comments
Wow! Nice. Congratulations to the winners!
- Log in to post comments
Congratulations to all the participants 馃巻 Well done!
- Log in to post comments
First of all, there are no links to docs you've tried in your post. If you add them (or the code from them) it will be easier to understand what you've already tried.
In general, I believe the easiest way to insert data in your case will be to use SQL. You can either write something like
insert into JASON.BikeDB (Make, Model) values (:make, :model)and pass the values of parameters.
Or if you wish to use your class method, you will first need to add a modifier SqlProc to it:
ClassMethod SaveNew(Make As %String, Model As %String) [SqlProc]
{
Set obj=##class(JASON.BikeDB).%New()
Set obj.Make=Make
Set obj.Model=Model
Set sve=obj.%Save()
}and then call this as a stored procedure:
begin
JASON.DataBase.SaveNew(:make, :model);
end;- Log in to post comments