Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
507 views

Best way to implement a Hibernate UserType after deprecations?

I recently got the latest version of Hibernate and noticed that my UserTypes now have warnings about AbstractStandardBasicType's nullSafeGet(ResultSet,String) and nullSafeSet(PreparedStatement,T,int) ...
6
votes
5answers
219 views

Can I query a UserType with several properties mapped to a single column?

I have the following domain model: public class Name { private readonly string fullName; public Name(string fullName) { this.fullName = fullName } public string FullName { get { return ...
5
votes
1answer
667 views

How to map IDictionary<string, object> in Fluent NHibernate?

I am looking to persist user preferences into a collection of name value pairs, where the value may be an int, bool, or string. There are a few ways to skin this cat, but the most convenient method I ...
4
votes
2answers
704 views

Unit testing NHibernate UserTypes

Does anyone have a good approach towards unit testing their UserTypes? By way of example, I have an object in my model called DateRange, which has a DatePoint start and DatePoint end. In addition to ...
3
votes
2answers
409 views

Allowing different user types registrations in Drupal 6?

I have two types of users on my site: Normal user Supplier How do I set up Drupal so that you can choose which type of user you want to be before signing up, and then also (and this is the tricky ...
3
votes
2answers
1k views

NHibernate CompositeUserType: How to specify Sql Types?

Using NH 2.0, I have a custom type. It is composed of four properties, so I implemented ICompositeUserType. I want to specify length and precision for the string and decimal properties within the ...
2
votes
0answers
80 views

Hibernate Entities from Multiple Databases

Our data model is separated into schemas on two databases. The schemas are used in isolation except for a few single-key relationships that bridge between the two. There are no write transactions that ...
2
votes
2answers
796 views

Hibernate custom UserType isn't working

I've created a UserType (see below) to handle a situation in our mySQL database where we've been saving null dates as 0000-00-00 00:00:00. When I try and persist my entity with a null for dispDT (see ...
2
votes
6answers
968 views

Map database column1, column2, columnN to a collection of elements

In legacy database tables we have numbered columns like C1, C2, C3, C100 or M1, M2, M3, M100. This columns represent BLOB data. It is not possible to change anything it this database. By using JPA ...
2
votes
1answer
788 views

NHibernate mapping: UserTypes with many-to-one

New to NHibernate and learning it as we are modifying an existing solution to use this ORM. Ideally, the storage structure and object classes need to stay the same, so Ive come across one or two ...
1
vote
2answers
115 views

How to handle different user types by using groups?

My question is in regards to having an application with two different user types, and each usertype has different "profile fields"(or details to look at it another way). To handle this, I used the ...
1
vote
1answer
76 views

nhibernate user type composition

Say I have an immutable ICompositeUserType to deal with a DateRange, or Money, and then it turns out that I have another value object (ie, immutable) that has either a DateRange or Money property ...
1
vote
1answer
654 views

Hibernate/JPA/HSQL : How to create a Dialect mapping for User Type ARRAY

I have successfully created User Types with Postgres, and can read and write successfully. @org.hibernate.annotations.Type(type = "com.xxx.datamodel.ext.FooType" ) @Column(name = "foo", nullable = ...
1
vote
1answer
316 views

Hibernate doesn't support accessing fields on usertypes for projection criterias?

My Classes: public class User { @Type(type="AccountType") private AccountType accountType; } public class AccountType { private String name; private AccountType(String name) { ...
1
vote
2answers
338 views

Hibernate UserType to truncate trim data

Wondering if it is a good or bad ideal to make use of Hibernate UserType to trim data from an incoming data feed to prevent exceptions thrown if the data is to large to fit into the given column. We ...
1
vote
1answer
797 views

Grails: domain class mapping (collection of hibernate user types)

I am wondering if is possible to implement following domain model. Let's have a domain class which contains set of intervals (joda time). I can use org.joda.time.contrib.hibernate.PersistentInterval ...
1
vote
0answers
334 views

Hibernate: Programmatically binding UserType's on Components

I have several different UserType's (org.hibernate.usertype.UserType) in the system. For this question I will focus on the fact that we use Joda time DateTime and its UserType, PersistentDateTime. I ...
1
vote
1answer
527 views

Hibernate bit array to entity mapping

I am trying to map a normalized Java model to a legacy database schema using Hibernate 3.5. One particular table encodes a foreign keys in a one-to-many relationship as a bit array column. Consider ...
1
vote
1answer
383 views

How to define UserType' s name globally in Hibernate?

It's possible to use @TypeDefs annotation to define short type name for a UserType. But how to define it for entire application?
1
vote
0answers
159 views

Query on hibernate entity with user-type field

working with JPA above hibernate impl. I map my enums by using user-type follow the good practice to store a persistence key to the enum and not the ordinal (which can be changed). Now, i have a ...
1
vote
1answer
443 views

Error mapping UserType from to property with NHibernate

I needed a way to trim strings within my persistent class because my legacy database is using char fields. I downloaded the nHhaddIns dll to use its TrimString class which is derived from IUserType. ...
1
vote
1answer
2k views

NHibernate property mapping: columns and formula

When i map columns from the inspected table, i do this: <property name="InstanceName" type="MyNameUserType, MyApp.MyNamespace"> <column name="Name"/> <column name="Name2"/> ...
0
votes
0answers
61 views

Joomla 1.5.23 Registering different usertypes using default login/register component/module

I stucked in a Joomla 1.5.23 Registration question. I'm using the default Login module/component. In rootdir/component/com_user/controller.php there is a variable called $newUsertype. When I set it ...
0
votes
0answers
130 views

Getting wrong data type error when persisting long as a byte array

I am creating a hibernate usertype to persist a long datatype as a byte array with additional data in the database(hsqldb). When I set the byte array in the prepared statement(.setBytes()) after ...
0
votes
1answer
253 views

How to Display Array Into One DataGridView

I have a Method, which returs Some kind of data, One of them is lets Say FirstClass typed Array. FirstClass contains two properties. Can I display this field (I mean FirstClass two properties for all ...
0
votes
0answers
146 views

Hibernate UserType not found by JBoss on startup

Stumped and frustrated. Is this a JBoss scope issue?? Just switched to JBoss-6.0.0.Final from Tomcat stand-alone. Have been using Hibernate 3.6 all along and my package libraries are unchanged. ...
0
votes
1answer
118 views

Is it possible to map Hibernate <component> column to a custom user type?

I have defined a custom user type that works fine when used properties of my entities. For instance: <class name="com.my.sample" table="MY_TABLE"> ... <property name="foo" ...
0
votes
1answer
72 views

User Defined Types Passing to a Function is a Call By Value in C?

I have a struct and I pass this struct to function. Maybe function protype is: typedef struct { //Bla Bla } ABC; void func(ABC abc) { } This function calling is Call by value or Call by ...
0
votes
2answers
226 views

Assign values to keywords in usertype.dat in visual studio?

I found that if you create a file called "usertype.dat" in visual studio's IDE dir, that you can specify keywords that will appear in blue like "new" or "int". Is there a way to assign values to ...
0
votes
1answer
194 views

NHibernate UserType value on object

I'm using a UserType to maintain a column (Created) in my db. When saving to db i simply check if the property in question equals DateTime.MinValue, and if so updates it to DateTime.Now (overriding ...
0
votes
2answers
1k views

Why are user types not highlighted in Visual C++?

I would like to have Visual Studio highlight the names of my own classes in the text editor. I have selected a color under User Types in Options > Fonts & Colors -- but strangely, this only ...
-1
votes
4answers
320 views

NHibernate Mapping - UserType with a column being re-used?

I basically have a Money value type, which consists of Amount and Currency. I need to map multiple Money values into a table, which has multiple fields for amount, but only one currency. In order ...