ORM for DELPHI win32

前端 未结 10 1925
日久生厌
日久生厌 2020-11-28 21:31

Does anyone know about an ORM or something similar for Delphi Win32.

相关标签:
10条回答
  • 2020-11-28 21:52

    New in 2011: DORM - http://code.google.com/p/delphi-orm/. Some documentation can be found on author's blog.

    0 讨论(0)
  • 2020-11-28 22:01

    Jazz SDK, ORM is a part of the OPF part

    http://jazz-sdk.googlecode.com

    0 讨论(0)
  • 2020-11-28 22:04

    I tried Remobject Data Abstract for 1-2 year in some real world projects.

    Some features are good (a very good binary comunication protocol), some other are simply pitfalls (it adds a something of chaotic code and you have to pass dialog by dialog every change you made on the schema).

    It's good you define a schema of the model, it's bad you miss much of the power of SQL (es grouping by, a easy to use join, ecc).

    I think that it's hard to fit a good ORM on top of the old VCL and TDataSet.

    DatAbstact was a try but at the end I rewrited my application in another language because a good ORM and a good framework is a must have for a good application.

    VCL is simply too old to fit well with modern concepts of application development.

    Anyway i tried InstantObject and Bold, are two good ORM frameworks but not more supported.

    0 讨论(0)
  • 2020-11-28 22:09

    Here you have one: http://code.google.com/p/delphiorm/

    0 讨论(0)
提交回复
热议问题