Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

java - New to Object Relational Mapping -


i went ahead buy book on hibernate. wanted learn on hibernate , object relational mapping in general.

harnessing hibernate has topics on hibernate , think able write simple mapping classes now. problem is, think way ahead on hibernate dont know why need one.

the book explains hibernate think @ lost cause not bother discuss why need hibernate , orm.

can please give me useful link read orm. google hits not give me clear results. thanks.

i suggest starting @ wikipedia.

from there, follow links @ bottom.

to provide short answer: orm used abstract data storage, database. can serve multiple purposes, among those:

  • application programmers can add , maintain functionality of software without in-depth knowledge of database (you can write code in java, not in sql).
  • it takes away pitfalls of having assemble sql statements strings , therefore eliminates huge source of errors.
  • database optimization independent business logic. ensures better maintainability. optimization can either done orm ( via configuration files) or directly in database (by manually adding index tables and/or query caches). both not take place in actual program code.
  • data providers can more exchanged, because orm offers drivers multiple databases, same functional logic work different products , vendors.

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -