go to post David Hockenbroch · May 14, 2024 If you download the MongoDB JDBC driver, you can use it to set up an SQL Gateway connection in your system management portal. Once you've done that, you can use that to do your query, or you can link the tables in MongoDB so you can query them more directly.
go to post David Hockenbroch · Apr 29, 2024 I don't think there is a really good way to do exactly this through JDBC, but you can handle this using the JDBC URL if you do a little setup beforehand. First, in the SMP, System Administration, Configuration, System Configuration, Namespaces, click on Create New Namespace. Give it a name - let's say "SAMPLE" and have it copy from your original namespace (probably USER). Second, go into a terminal, switch to the new namespace and use the command: w $SYSTEM.SQL.Schema.SetDefault("SAMPLE",.oldval,1) You should get a 1 confirming that the change was made successfully. At this point, when you make your JDBC connection, connecting to either namespace will work on the same database, but connecting to the SAMPLE namespace will use the sample schema, and the USER namespace will use the SQLUser schema.
go to post David Hockenbroch · Apr 24, 2024 @Cristiano Silva, Rochdi is using Ensemble 2018. Does that version automatically configure IIS if you install it after IIS? I could be wrong, but I thought that automatic configuration was only in more recent versions of IRIS.
go to post David Hockenbroch · Apr 19, 2024 I've never actually used Open Exchange before. I'm going to learn how to do that, and then I will do that.
go to post David Hockenbroch · Apr 19, 2024 If you instead use: do attachObj.%Set("contentType","application/pdf") Does that give you the result you expect?
go to post David Hockenbroch · Apr 16, 2024 If that's the issue, you could also try the following, and it will post to that location using the parameters you specified with InsertFormData: set AuthToken = "/B2C_1A_client_credentials_signIn/oauth2/v2.0/token" set tSc = AuthToken.Post()
go to post David Hockenbroch · Apr 9, 2024 You can use the if $i to do some stuff within loops too. For example, if you enter the following to commands in a terminal: set a = 5 for{if $i(a,-1){w a,!}else{quit}} This will subtract 1 from a and write its value until it reaches 0, then quit the loop. Of course you could just as easily use for a=4:-1:1 {w a,!} to produce the same output a little more nicely, so you don't see that as much.
go to post David Hockenbroch · Apr 9, 2024 You will have to initially set it to something, yes. Once you set the value in the onchange, if you want it to also run the query again, I believe you have to tell it to do that. You could make that part of your method too, though.
go to post David Hockenbroch · Apr 8, 2024 You can create a text input and write a method that sets the maxRows property based on what the user puts into that input that fires in the input's onchange.
go to post David Hockenbroch · Apr 2, 2024 The document's original source file name is the name the file had when it was received. %f is a shorthand for using that in the file name. If you wanted them all to be named "myfile" with the timestamp on the end, you'd change the Filename property to myfile_%Q%!+(_a)
go to post David Hockenbroch · Apr 2, 2024 In SQL, you can use the following query: select * from %dictionary.compiledclass where primarysuper like '%abc.test.cls%'
go to post David Hockenbroch · Apr 1, 2024 Queries to linked tables will fail if there is an issue with the connection, but when it's up, you've got the current data. Copying it over would help with potential connection issues, though you would still have a problem if the connection can't be established when you're trying to copy the data over. But if you're doing that once a day, your data is going to be a day old at times. I think the question you need to be asking is, for your specific application, how important is it that the data you're getting from the external database is current?
go to post David Hockenbroch · Apr 1, 2024 Your login request technically is an unauthenticated request, which means it uses the account UnknownUser. Since the web application /api/atelier requires user permission on the %Development resource, the request is failing. You could address this by either removing that restriction from the web app or by assigning the %Developer role to UnknownUser. In my opinion, though, neither of those is really ideal.
go to post David Hockenbroch · Mar 27, 2024 I've seen this before when the browser has something cached from the old version. Have you cleared your browser's cached files?
go to post David Hockenbroch · Mar 27, 2024 When you see something that starts with a ..# that's a parameter that's defined in a class. If you look at the source of the %CSP.REST class, you'll see: Parameter HTTP401UNAUTHORIZED As %String = "401 Unauthorized"; So you could try either set the %response.Status "401 Unauthorized" or add that parameter to your class and use it as you have before in %CSP.REST classes.
go to post David Hockenbroch · Mar 26, 2024 If you want to do all files in a directory, including recursively going into all subfolders, the command should be something like: zip -r test001.zip /path/to/folder/ If you're trying to do this from inside ObjectScript, you'd have to use $ZF -100 to do that: set args(1) = "-r" set args(2) = "test001.zip" set args(3) = "/path/to/folder/" do $ZF(-100,"","zip",.args)
go to post David Hockenbroch · Mar 26, 2024 gzip and zip are not the same thing. If you are trying to create a .zip, you need to use zip. It's probably not finding your test001.zip because it's creating a test001.zip.gz.
go to post David Hockenbroch · Mar 26, 2024 .gz and .zip files are two very, very different things. You can't just rename a gz to zip and expect it to work.
go to post David Hockenbroch · Mar 25, 2024 We haven't tried using it for ObjectScript, but we do have some customers who use Crystal Reports who have tried using it to help set those up, and it has been very questionable for that. It definitely doesn't understand what's where in the database structure, and even basic formula fields seem to be far more complicated than necessary.
go to post David Hockenbroch · Mar 22, 2024 If you want to treat them as lists, you probably want to use $LISTFROMSTRING along with $LISTGET, $LISTFIND, and $LISTLENGTH. All of which can be abbreviated to their initials, by the way - $LFS, $LG, $LF, $LL. set y = $LFS("Red,Green,Orange,Yellow") set x = $LFS("Purple,Black,Yellow,Pink") for i=1:1:$LL(x){ if $LF(y,$LG(x,i)) > 0 { write $LG(x,i)_" found in both lists!",! //Or whatever else you want to do when you find a match here . . . } }