Hey InterSystems-Community,
is it possible to get these Property Descriptions via SQL Query for example in the Management Portal?
Best regards,
Florian
Hey InterSystems-Community,
is it possible to get these Property Descriptions via SQL Query for example in the Management Portal?
Best regards,
Florian
Hi Community,
My old code:
Hello Caché-Community,
where can I download the current ODBC Drivers for InterSystems Caché.
The links in the following post don't work anymore:
https://community.intersystems.com/post/odbc-drivers
Best regards
Florian Hansmann
Hello Community,
we want to use a specific index on our sql-class.
The index we want to use is called "iFilter".
Currently we use the following technique of ignoring all other indices because the automatically chosen index is always too slow.
Hey Intersystems Community-Member,
Following Issue: When I update a SQL table like (update OnlineV3Admin.ParameterApp set popuptext = '' where ID = '1') and then read it for my Json WebService there is a /"x00" in my Json.
What is the best option to disable that? I need here a empty String and not /x00.
Any ideas?
Best regards,
Florian Hansmann
Hey Intersystems Community,
I have a Problem with the Session Handling in .csp.
I wrote all my Web Services in .csp-Pages and do the work for example in the OnPreHttp Method for to get some data.
After that the Web Service response is in JSON.
I call These Web Services via fetch in my react Single Page application, also Many request parallel. The react App is Rolled out as index.html.
Everything Works Fine with the session Handling via Cookie.
Hello Intersystems-Community,
I build an API and there I use $order to get the Data from my Globals.
When I first time use that API it's get an error (504 Gateway-Timout > 60 Sec.).
After 2 reloads it works with a loading time of 2 Sec.! Sounds for me like the $order is cached and it works faster. Is it true $order will be cached?
When it works, I only get the error at the next day. So it's very hard to reproduce that error. Is it possible to delete the cache for $order?
Example:
Hey Community,
my Caché Version: 2013.1 and can't update now.
is it possible to highlight SQL Statements like in embedded SQL with all the features from SQL Statements?
Actually I use SQL Statements with a simple string like:
set myquery = "SELECT TOP 5 Name,DOB AS bdate,FavoriteColors FROM Sample.Person"But when the queries are more complex it will be very cluttered and unstructured.
It would be nicer if I could set line breaks (I know here could I use indexed variables) and have highlighting like in an embedded SQL:
&sql(
SELECT TOP 5 Name,DOB AS bdate,FavoriteColors
FROM Sample.Person
)Hey Community,
my Caché Version is 2013.1 and I can't update now.
I want to serialize a SQL Answer row into an Array filled with objects and then convert it to json.
Actually I use the following, which is very error prone when I have to do that often:
Hi Caché-Developers!
My Caché Version: 2014.1 and the CSP-Gateway Version ( + Apache) also. I can't upgrade now.
I want create a Web-Socket for my Chat like in that Tutorial:
https://community.intersystems.com/post/tutorial-websockets
And there's my problem. When I set SharedConnection like:
set ..SharedConnection = 1
I get on init connection with the server that message:
First i think everything is okay but here i also didn't get the Messages on init from Server-Side:
When I now send a message to the WebSocket, I got following error:
Without SharedConnection = 1, everything works fine for me.
Hello Community,
My Intersystems Caché Version: 1.2014 (Can't update now.)
I have the following issue:
I have for example an articlenumber with 15049950, which is numeric. But sometimes it can also be an alphanumeric string like PK15049950.
How can i set numbers always to string in Json Stream with quotes like "15049950".
Code Example:
set object = ##class(%ZEN.proxyObject).%New()
set articlenumber = "15049950"
set object.articlenumber = articlenumber
set x = ##class(%ZEN.Auxiliary.jsonArrayProvider).%WriteJSONStreamFromObject(.json,object)
Will output:
{
"articlenumber": 15049950
}
but I want always:
{
Hey Intersystems-Developer,
I have already used that and know its possible, but can't find it anymore :(
I need dynamic access on proxy objects. For example:
set key = "lastName"
set name = obj.name
set lastName = obj.key <- Not possible
set lastName = obj.GetAt(key) <- Not possible
How can I get access to that object with my dynamic variable "key" ?
Best regards.