I've got a geodatabase from which I can get my FeatureClassDefinitions - so I know the gdb exists and is accessible. I can also query its content using a python script and a sql-statement - that works too.
I just can't figure out how to send a sql-statement from within the dockpane to my gdb and get the result.
I tried DatabaseClient.ExecuteStatement(geodatabase, statement); but that doesnot return the result (but also no error). I tried geodatabase.OpenQueryTable() - but I don't get it to work.
I'd really appreciate if anyone could tell me, how I can send a sql-statement to my geodatabase and get the result from that query back, e.g. as string?