Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
93 views

UniFile ReadNamedFields

I'm currently using IBM's UniObjects and I trying to retrieve multiple fields from a UniFile at once to increase efficiency. UniFile uFile = uSession.CreateUniFile("fileName"); uFile.RecordID = ...
2
votes
1answer
744 views

Where to get UniObjects for .NET?

I hate IBM's site. It is extremely hard to find anything on there let alone try to find it twice! I'm looking for the UniObjects for .NET. I did find the below files and have installed them (can't ...
1
vote
0answers
57 views

Multiple threads accessing UniData from UniObjects.NET throws UNI RPC error

We've been using UniObjects.NET without issue until we started using it with BizTalk which is a multithreaded product. The issue is the error below. This error only happens on the 2nd thread (and ...
1
vote
1answer
46 views

UniObjects for .NET OpenSession() Socket Exception

I'm trying to get an example running on my computer which comes packaged in the C:\IBM\UniDK\uonet\samples\C# directory. The name of the project is UniSelectList. This exact code, works perfectly on ...
1
vote
1answer
65 views

How do you change the UniObjects.NET mode from using … to using [ and ]?

How do you programmatically change the UniObjects.NET mode from using ... to using [ and ] when using the query command?
1
vote
1answer
188 views

Why does Uodotnet with Connection Pooling timeout?

We're trying to get connection pooling working with uodotnet and currently failing miserably. When we turn connection pooling off everything works as expected, but when we turn it on we often get ...
1
vote
1answer
265 views

How To Insert Data into UniData using UniObjects for .NET

I am working on inserting data into our UniData server from .net. I have successfully updated an existing record using UniQuery by using the Modify statement. And according to the documentation, I ...
1
vote
1answer
559 views

UniObjects for .NET - Reading and Writing UniVerse Files

Our organization is using UniObjects for .NET but the CD seems to have gone missing. I need to figure out how to read and write to and from files in Universe. Please note the program is written in ...
1
vote
3answers
296 views

ASP.NET handle external server sessions - clean-up

Are we "doing it wrong"? A colleague and I are messing around with an ASP.NET page to act as a "portal" to view the results from a diagnostic program on a UniData server. Although we do the odd-job ...
1
vote
1answer
88 views

UniTransaction throwing NullReferenceException

I'm trying to begin a transaction however on calling the .Begin() method throws a NullReferenceException and the stacktrace shows that it is coming from ...
1
vote
3answers
664 views

UniCommand differences for UniData

I'm new to the world of UniObjects as I've been in .NET land since it debuted. After building a simple app to return the select list of a UniCommand statement I noticed that there are some major ...
1
vote
3answers
728 views

UniData Data Access Products for .NET

I am doing some research about how to access data in a UniData database from .NET code. From what I have found, I can use UniObjects for .NET and U2.NET. I have also found this information, which I ...
0
votes
0answers
9 views

How can I specify the LIBPATH on a UniObjects for Java subroutine call?

I am having xml errors due to a LIBPATH setting when calling a UniSubroutine through UOJ. Referencing the U2 Knowledgebase article SFMA-17048, I tried using the SETENV Unibasic function, but this was ...
0
votes
1answer
145 views

Uni Objects .NET Running Query and getting result set

I've been playing around with UniObjects .NET. I would like to be able to run a SELECT query and get the data in to a form where I can run through the data. The documentation I've been using is at ...