Rexiology::Past

Archive of original http://blog.rex.la...

News

From Taiwan, living and working at Tokyo, Japan.


follow rextang at http://twitter.com



Rex's Certifications
Rex's Certifications

Site Info



Locations of visitors to this page



Logos & Chicklets


GeoURL


Creative Commons License
This blog is licensed under a Creative Commons License.


Microsoft

跟我有關的

I.T. Related

Bloggers

線上廣播 (Online Radio)

.推薦閱讀

.推薦音樂

SharePoint Blogroll

Business

TechNet Related

日本相關

音樂 (Music)

メロメロパーク





Browse by Tags

All Tags » O/R Mapping (RSS)
About the old RSS feed redirection of Feedburner...
Don't know if you can still see this post via your RSS reader. just started from yesterday Feedburner had my old feed http://feeds.feedburner.com/rextangtw changed to a RSS redirect tag like this. <? xml version="1.0" ?> < redirect > <...
The "Past" blog was stopping updating...
Just for your reference here if you didn't see the main page , this "Past" blog is the archive of my previous blog hosted at http://blog.rex.la . All the links at http://blog.rex.la will correctly links to posts here (through URL rewriting), so that all...
NHibernate Tips - If you are mapping to a CLOB field on a Oracle database...
My situation as follows: I am developing my project with my team using SQL Server as testing database, the production environment will use Oracle to host the data. We used NHibernate 1.0.0 as the O/R Mapper to deal with database transparency and focus...
NHibernate Tips - If you are mapping to a ntext field on a SQL Server database...
Took me some time to find out the problem. I was saving my serialized objects xml string to my database. SQL server nvarchar had a max length of 4000 chars, it's better to use a ntext to storing those xml string. later found that the data saved to database...
NHibernate 1.0 released...
It's not news anymore, NHibernate finally got its 1.0 release , not a beta or RC anymore. Saw this announcement stated at 10/17 couple days ago that NHibernate joins Hibernate at JBoss Inc. , which stated: NHibernate is a port of Hibernate 2.1 to the...
NHibernate 1.0 RC1 (0.99.1.0) was out...
ok. it's been a while not getting into some serious development projects, as I was busy preparing my Japanese Proficiency Test coming at December. now my new project is getting into building fundamental application blocks and I decided to improve my O...
NHibernate 0.9 released, Log4Net up to 1.2.9...
just saw from TheServerSide.Net , NHibernate 0.9 is released , Release Note here . the changes as follows (from Release Note ): Build 0.9.0.0 ======================== - Added ISession.Clear(). - Added configurable command timeout property (hibernate.command_timeout...
Book: Patterns of Enterprise Application Architecture by Martin Fowler
I think it should be the BASIC for advanced developers as well as solution architects to be able to 1. Read a pattern 2. Understand a pattern 3. Implement a pattern 4. Merge a pattern into solutions Martin Fowler is a noted software engineer expert. His...
NHibernate Tips (part 2)...
When one made the system run as what stated in specification document, next one will be challenged with performance. seems it's normal in performing software development projects. The key things about using NHibernate are: Correct O/R Mapping files (...
NHibernate Tips...
Been busy days for months, my project is going to online soon. it's sort of a data retrieving project and I used NHibernate as the O/R Mapper for data. one thing found soon is that it's easily changing data store between different database systems. my...
NHibernate: <set> v.s. <bag>
if you read the whole Hibernate in Action book, you'll find that in Java world, people use "set" collection often. most of the NHibernate articles and examples followed Hibernate 's Java trend, using <set> to map one-to-many and many-to-many relationships...
Book: Hibernate in Action...
I've been busying mapping my business tier objects to data-tier using NHibernate , an excellent port from Hibernate in Java world. 2 things to say. first, the xml schema for the mapping file is sort of clear and excellent, but you should take some time...
NHibernate SubClass Bug...
I found something while doing my project using NHibernate as the O/R Mapper. I got a table that stores multiple category-item data inside it. used a column 'type' to distinguish groups of values. thus it's obvious to use SubClass tag with discriminator...
O/R Mapping: NHibernate v.s. LLBLGen Pro...
ok... this is what I've learned from today's workshop of my project... from my previous post , I've selected LLBLGen Pro and NHibernate to start on ORM tools. LLBLGen Pro just updated to v1.0.2004.2 at 10-may-2005, while NHibernate just released v0.8...
Object-Relation Mapping Tools...
Tired of writing those Object to/from Database codes? I am very tired of it! everytime started a new project, mostly first to define the architechture, then define the object classes, and then database schema, when those overall structures are defined...