Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
2k views

Self Inspection of VB6 UDTs

I have a feel the answer to this is going to be "not possible", but I'll give it a shot... I am in the unenviable position of modifying a legacy VB6 app with some enhancements. Converting to a ...
9
votes
4answers
666 views

C++ crazy typedef : what is the point of allowing this syntax by the Standard?

The old familiar one: typedef int my_int; //cute This syntax is perfect. No problem. Now, when we can write typedefs like above, then what is the point of allowing this syntax: int typedef ...
7
votes
5answers
212 views

How do we use sin,cos,tan generically (including user-defined types) in Python?

Edit: Let me try to reword and improve my question. The old version is attachted at the bottom. What I am looking for is a way to express and use free functions in a type-generic way. Examples: ...
6
votes
8answers
222 views

How widely used are Oracle objects?

I'm writing an assignment for a databases class, and we're required to migrate our existing relational schema to Oracle objects. This whole debacle has got me wondering, just how widely used are these ...
6
votes
7answers
275 views

Should small simple structs be passed by const reference?

I have always been taught that non-primitive types should be passed by const reference rather than by value where possible, ie: void foo(std::string str);//bad void foo(const std::string ...
6
votes
5answers
8k views

User Defined Type (UDT) As Parameter In Public Sub In Class Module.Visual Basic 6

I've tried to solve this problem, but can't find any solution. I have a UDT defined in a normal module, and wanted to use it as parameter in a Public Sub in a Class module. I then get a compile error: ...
5
votes
4answers
1k views

SQL Server 2008 - How do i return a User-Defined Table Type from a Table-Valued Function?

Here's my user-defined table type... CREATE TYPE [dbo].[FooType] AS TABLE( [Bar] [INT], ) This is what ive had to do in my table-valued function to return the type: CREATE FUNCTION ...
5
votes
4answers
4k views

How do you return a user defined type from a WCF service?

I have a WCF service hosted in IIS. The intention is for clients to make a call and receive a custom class that is defined in another project/dll. I have generated a service client using the ...
5
votes
1answer
1k views

How to change the base type of a UDT in Sql Server 2005?

I have my type "x" of type varchar(50). How can I alter it to varchar(100)? It seems I can't!
4
votes
3answers
457 views

What's the best way to read a UDT from a database with Java?

I thought I knew everything about UDTs and JDBC until someone on SO pointed out some details of the Javadoc of java.sql.SQLInput and java.sql.SQLData JavaDoc to me. The essence of that hint was (from ...
4
votes
1answer
170 views

Create a UDT that has SQL @tables as its members

I wonder whether it is possible to create a CLR user-defined type in SQL Server 2008 members of which would be table variables. You know, you can declare a table variable: declare @foo table (row_id ...
3
votes
2answers
119 views

F# equals operator complexity

I have a question about default "=" (equals) operator in F#. It allows to compare user-defined union types. The question is: what's the complexity of it? For example, let's consider following type: ...
3
votes
4answers
66 views

How to get information about a User-Defined Type?

In simplicity, PL/SQL generally follow the following: DECLARE Variable declaration BEGIN Program Execution EXCEPTION Exception handling END; I am quite new to PL/SQL and i am ...
3
votes
1answer
88 views

How can I do forward declarations in Oracle?

Here is my situation: type A wants to have a method that returns a type that is a table of type A entries. Can I do this?
3
votes
1answer
329 views

SELECT all of a user-defined datatype/structure

Is there a shortcut to selecting all the components of a user-defined datatype/structure in SYBASE 10? So if Resrv is a field based on a user-defined datatype/structure, something like: SELECT ...
3
votes
1answer
1k views

Invalid binding for Oracle UDT in procedure parameter

I'm attempting to call a procedure that takes a custom data type of table of numbers as one of the parameters. Here is the definition of the type: create type num_list as table of number; And the ...
3
votes
2answers
888 views

How to override a structure constructor in fortran

Is it currently possible to override the structure constructor in Fortran? I have seen proposed examples like this (such as in the Fortran 2003 spec): module mymod type mytype integer :: x ...
3
votes
4answers
382 views

c++ convert class to boolean

With all of the fundamental types of C++, one can simply query: if(varname) and the type is converted to a boolean for evaluation. Is there any way to replicate this functionality in a user-defined ...
3
votes
3answers
4k views

How cool are User Defined Data Types in MS SQL Server?

Are User Defined Data Types in MS SQL Server something that a intermediate SQL user should know and use? What are pros and cons of using UDTs?
3
votes
1answer
463 views

SQL Server UDT sizes 2005 to 2008

In SQL Server 2005, we defined some UDT (User Defined Datatypes) on in particular was SK (for Surrogate Key). These were defined as 32 bit 'int'. And consequently the size was 4 bytes. In SQL ...
2
votes
1answer
29 views

Oracle bulk loading of user defined types

I am trying to load a large amount of data into my Oracle database, and until now i have been using normal insert statements, but over time the number of rows to insert is increased to over 15mil and ...
2
votes
2answers
85 views

Oracle User defined type inside package definition

is it possible to have a User Defined Type inside Oracle package definition? When I try following CREATE OR REPLACE PACKAGE AF_CONTRACT AS -- spec -- PROCEDURE my_rpcedure (emp_id NUMBER); ...
2
votes
2answers
76 views

Python - Get sorted list of user-defined classes

I have a class: class Prediction(): def __init__(self, l): self.start = l[0] self.end = l[1] self.score = l[2] And a list, where each element is a Prediction. It's aptly ...
2
votes
1answer
29 views

CAST to package type

Is it possible to CAST to a type within a package? For example: CAST(v_variable AS Mypackage.type) I know CAST states the ability to cast to built-in types but I was wondering if this was ...
2
votes
1answer
96 views

PostgreSQL info about user defined types

Where are stored information about user-defined types? Are there some tables which contain infos about the fields of a user-defined composite type, their names, etc. ? Regards, Antonio
2
votes
2answers
133 views

In oracle database, how can I specify default value for a parameter that is a user defined type?

PACKAGE PKG_DEVICE AS TYPE STR_ASSOC_ARR is table of VARCHAR(255) index by BINARY_INTEGER; procedure proc_create_device ( in_deviceid in raw , in_devicecert in clob , in_status ...
2
votes
2answers
166 views

How do you send a User defined class object over a tcp/ip network connection in java?

This is an example of a user defined class I'd like to send from a client application to a server application: class dataStruct implements Serializable{ byte data; int messageNum; public ...
2
votes
1answer
243 views

Defining constants and Objective-C

I'm writing a board game to teach myself Objective C for iPhone and I have a "Piece" class. Now I would like to make pieces of different shapes, so I would like to add a field "int shape" to the ".h" ...
2
votes
1answer
308 views

How to read a UDT from a postgres stored function

I can't seem to read a UDT properly from a stored function with the postgres JDBC driver. This is some sample code: CREATE TYPE u_country AS ENUM ('Brazil', 'England', 'Germany') CREATE TYPE ...
2
votes
3answers
288 views

How to use nested structured types (UDT's) in DB2?

I'm trying to used nested structured types (UDT's) using DB2 but have encountered some problems. Below are the SQL statements for creating the types, table, functions and transforms for the use-case. ...
2
votes
3answers
285 views

How to pass user-defined data to a worker thread using IOCP?

Hey... I created a small test server using I/O completion ports and winsock. I can successfully connect and associate a socket handle with the completion port. But I don“t know how to pass ...
2
votes
2answers
209 views

Is possible to get automatic cast from user-defined type to std::string using cout?

As in the question, if I define a string operator in my class: class Literal { operator string const () { return toStr (); }; string toStr () const; }; and then I use it: Literal l1 ...
2
votes
3answers
516 views

How to use a data type (table) defined in another database in SQL2k8?

I have a Table Type defined in a database. It is used as a table-valued parameter in a stored procedure. I would like to call this procedure from another database, and in order to pass the parameter, ...
2
votes
2answers
2k views

C++ min heap with user-defined type

I am trying to implement a min heap in c++ for a struct type that I created. I created a vector of the type, but it crashed when I used make_heap on it, which is understandable because it doesn't know ...
2
votes
1answer
283 views

SQL Server 2008: Can a multi-statement UDF return a UDT?

Is it possible that a multi-statement UDF return a User Defined Table Type, instead of a table that is defined within it's return param? So instead of: CREATE FUNCTION MyFunc ( @p1 int, @p2 ...
1
vote
3answers
166 views

PL/SQL Use Table Variable in Where Clause

I have a table variable that is being passed into a procedure. I would like to use the values in a where clause as below, how do I do this. The first line below is declared in the package ...
1
vote
1answer
43 views

How to pass udtt into a stored procedure in SQL Server Management Studio

I have a SP prc_Foo_Delete which has the following signature: ALTER PROCEDURE [prc_Foo_Delete] @fooIds [int_udtt] READONLY, @deleteReason int, @comment nvarchar(512), @deletedBy ...
1
vote
2answers
86 views

Changing between user defined classes at runtime in C++

I have two classes with one extending the other. They both have a method called doSomething() that perform something different. I want to be able to have one pointer that I can switch from class A to ...
1
vote
0answers
56 views

Can you create a CLR UDT to allow for a shared Table type across databases?

If I had a SQL statement such as this: CREATE TYPE [dbo].[typeRateLimitVariables] AS TABLE( [vchColumnName] [varchar](250) NULL, [decColumnValue] [decimal](25, 10) NULL ) ...
1
vote
1answer
97 views

Haskell - Assigning a value to user defined types

Question I have defined a user defined type as type asd = [(Char,Int)] How can i assigin a value to a type asd such as asd= [("Hello",1)] (Not in run time) to keep hard code a value in source ...
1
vote
1answer
154 views

User-Defined Table Type insertion sometimes causing conversion error

I have a User-Defined Table Type called tvpInsertedColumns: CREATE TYPE [Audit].[tvpInsertedColumns] AS TABLE( [ColumnName] [varchar](max) NOT NULL, [NewValue] [varchar](max) NULL ) In a ...
1
vote
4answers
690 views

Impossible to add a User-Defined-Data Type parameter to my query

I'm trying to use a User-Defined-Data Type with C# and SQL Server 2008 but I have an exception raised when command.ExecuteReader() is executed. string qyery = "SELECT * FROM Product WHERE ...
1
vote
1answer
30 views

Do I need to add an ID value to my objects?

I have all these nice objects set up and ready to be added to tables. How are the objects made unique when I say: CREATE TYPE obj_table AS TABLE OF obj_type; Do I need to create a table that pairs ...
1
vote
1answer
171 views

Can I make a table of objects that have nested tables as attributes?

Here is a snippet of my OR schema: CREATE TYPE artist_table_type AS TABLE OF REF artist_type; / CREATE TYPE track_type AS OBJECT ( title VARCHAR(1000), duration INT, release_date DATE, ...
1
vote
2answers
145 views

How do I complete the input of a CREATE TYPE in sqlplus (Oracle)?

I'm trying to input a CREATE TYPE in my terminal, what I can't figure out how to finish it. Here is my specific query: CREATE TYPE testtype AS OBJECT ( id int ); / It then refuses to perform ...
1
vote
2answers
917 views

assigning values to a user defined data type, excel vba

I would like to assign a the values of a range to a user defined data type. I have a dataset of measurements taken at mutliple times over the course of a week stored in an excel sheet. I have created ...
1
vote
1answer
790 views

Classic ADO.NET - How to Pass UDT To Stored Procedure?

I have this SQL Server 2008 UDT: CREATE TYPE [dbo].[IdentityType] AS TABLE( [Id] [int] NOT NULL ) Pretty simple. Basically allows me to hold onto a list of id's. I have this stored procedure: ...
1
vote
1answer
92 views

SQL Server 2005 UDF to make a table data-type of self referencing table data

I have a typical self-referencing table of employees. How can you build an UDF to return a table data-type that can be used in other queries to join to such that I pass the UDF a id of a user in the ...
1
vote
2answers
65 views

Limit the acceptable range of a value in SQL Server 2008

I want to define a tinyint with an accepted range of 0 - 10. I know how to use triggers to validate a column and achieve this effect. However, is it possible to create a user-defined data type that ...
1
vote
3answers
263 views

Managing user-defined types across various modules

What is the best way to manage common user-defined types across VBA modules? I use the same user-defined types in different modules. For example, I often need to represent (x,y) points, so I end up ...

1 2