Tagged Questions
The udt tag has no wiki summary.
9
votes
1answer
153 views
Is it possible to create table-valued *methods* in a SQL CLR user-defined type?
I have a CLR UDT that would benefit greatly from table-valued methods, ala xml.nodes():
-- nodes() example, for reference:
declare @xml xml = ...
2
votes
1answer
76 views
How do I reinitialise a UDT in VB6?
I've got a loop, which is reading in a stack of XML files, for each one, it validates the data that was in the XML and loads it into some UDTs and then does some work on the data.
Then it gets back ...
2
votes
1answer
231 views
Whether there is a UDT backend for boost::asio?
Please, tell to me are whether exist UDT protocol backend for boost::asio?
UDT is a reliable UDP based application level data transport protocol for distributed data intensive applications over wide ...
1
vote
1answer
27 views
Choosing library to link at runtime
I am trying to modify iperf to support another protocol (UDT). The UDT API is written such that it mirrors the standard BSD calls:
socket(...);
bind(...);
listen(...);
What I need to do ...
1
vote
0answers
21 views
How to use oracle UDT constructor as a parameter using Microsoft Oracle Provider?
Basically, i need to pass an array of string to a procedure.
So I have created a UDT which is defined this way at schema level :
TYPE SCHEMA_NAME.T_STRINGARRAY AS VARRAY(100) OF VARCHAR2(4000)
...
1
vote
0answers
74 views
Python wrapper for UDT C++ library
I want to use the UDT library in Python, so I need a wrapper. I found this one: pyudt, but I dont know exactly how to use this to send files from a peer to peer. Can anybody point me in the right ...
1
vote
3answers
102 views
What determines if a field of a CLR user-defined type is XML serializable?
As one of my first .NET projects, I'm trying to create a CLR user-defined type for use in SQL Server. In MSDN Library's Requirements for Implementing UDTs it says:
The UDT must implement ...
1
vote
1answer
135 views
UDT in VBScript: “Error: Expected identifier”
I'm used to ClassicVB/VB.Net but not VBScript, and I'm getting an error when calling the script below from an application:
# $language = "VBScript"
# $interface = "1.0"
'Microsoft VBScript ...
1
vote
1answer
145 views
How are fixed vs. variable length stings handled differently in VB6 UDTs?
In VB6, I can use either fixed or variable length strings in a UDT:
Public Type MyRecord
VariableLengthString As String
FixedLengthString As String * 80
End Type
I would expect ...
0
votes
1answer
35 views
UTF-8 Support, SQL Server 2012 and the UTF8String UDT
Researching the pro's and con's of SQL Server's VARCHAR vs. NVARCHAR for my particular application, I came to the realization that it would be ideal if SQL Server supported UTF8 natively. Several SO ...
0
votes
1answer
40 views
(Oracle) How to extract a specialized UDO from a object table based on a generalized UDO?
I apologize in advance for not knowing the terminology, but here it goes:
How do I extract a specialized UDO (UDO= user defined object & specialized= that 'extends' or is 'under' another UDO) ...
0
votes
0answers
51 views
how to pass a struct between visual c++ and perl using COM
I'm looking for the way to pass a struct (by pointer) between C++ and Perl using COM. My typelib seems to have the user defined type struct, sVersion. Function GetVersion should return struct sVersion ...
0
votes
0answers
58 views
How to initialize SQL Server User defined aggregate
I want to create an UDA (user defined aggregate) that first needs to be initialized with an UDT (user defined type) from one of the tables. What is the best design to achieve this?
The problem is that ...
0
votes
2answers
106 views
DB2 SQL array in attribute-defs of user defined type
I have a question concerning user defined types in DB2(v. 9.7.0.441). I want to create a type which has an attribute-array of another user defined type. Let me show you what I mean by a brief ...
0
votes
1answer
101 views
Fluent Nhiberante mapping for UDT Oracle Objects
As a predefined conditions I have multiple database sources to deal with.
Also I have a UDT – user defined types objects in part of this databases ( the UDT’s also have children inside) .
As a ...
0
votes
0answers
34 views
POSIX I/O Server using UDT [closed]
Is there any links or example codes for "POSIX IO Server using UDT"?
0
votes
0answers
176 views
Using User Defined Types as Reporting Services Parameters
I created a user defined type (CLR). Basically, it is a composite of a few values, separated by a comma (ex: 12,false,43,true).
Similar to the DATETIME type, I can set its value as a string, and the ...
0
votes
3answers
200 views
UDT::send in a for loop sends only once. No error
This sends data only once which seems irrational to me as it is in a for loop:
char* hello;
for (int i = 0; i < 10; i++) {
hello = "Hello world!\n";
if (UDT::ERROR == UDT::send(client, ...
0
votes
1answer
221 views
UDT server buffer size?
So here is my program for receiving UTD messages. I am planning to use it to receive 640*480 YUV images over wifi. How big buffer should I set? Is it possible to set buffer after receiving first image ...