Anthony, What would an estimate for adding that support be ? Is it in days, weeks, ... more ? Is there any specification of what is to be achieved on the UI...
Hello Phil, My key idea is to have the UI directly linked to the Orm Fields, with an absolute minimum of unnecessary bookkeeping code. The idea is that having...
Anthony & Melissa Ber...
berglas@...
May 2, 2005 12:55 am
1107
Anthony, ... Yes, a basic system is the best option right now. Change cases of it would then be: * what about complex controls like list of checkboxes for an...
Anthony, I believe you had released a copy of SDriverDerby.java in the 2.18 release that was a very early version of something someone had contributed. It has ...
... look. Take a look at Butler: Butler framework is a table-oriented java object model on top of JDBC that makes database programming easier. It also has a...
I ran across some writings talking about something like it. I am quite interested in that TOP thing (Table Oriented Programming). OO is great but can benefit...
... Hmmm... I'd like to see some kind of integration of SimpleORM with: - Tapestry (maybe there is no definition for 'integration' in the case of Tapestry -...
How do you guys usually do CRUD operations with your SRecordInstance instances ? Do you create an additional DAO layer or something ? Or you just subclass...
If you use the SGenrator, you subclass the _gen classes like this forexample: public class X extends X_gen implements java.io.Serializable { public static...
What about the Data Mapper design pattern ? http://www.martinfowler.com/eaaCatalog/dataMapper.html Should it be avoided when using SimpleORM, in order to keep...
Please allow me to preface these comments by stating that I am neither a fan nor friend of Oracle. I just ended up in a situation where I was using Oracle 9i...
Here's my 2 cents on some of the discussions that have been happening lately. 1) Hibernate THE BAD Byte code processing = yuck and forget .net! XML = yuck! ...
Anthony : I do not share your interest in integrating SimpleORM with the UI layer. My experience is that this scales very badly as your app gets bigger. Its ok...
... Spring looks better...a single abstraction layer that isolates you from the particular's ORM decision. With Spring, the persistence layer is now an...
I decided to create some classes/interfaces to easy the process of dealing with CRUD operations while following the Data Mapper pattern. Let's see some...
Not bad for a generalized design for the information sources. I would like to have some kind of sample (along w/ SQL DDL and source code [build.xml would be...
Spring looked nice at first. And then... Further examination gave me the opinion that it is just one big piece of overdesign. Without getting in the gritty...
The problem This is a discussion I have had a while back with Anthony on which we disagreed at the time. The discussion on Hibernate made me think a lot about...
Hi all, I'm happy to see much discussion taking place in simpleorm list. I really like using simpleorm. SO I also wanted to give my point of view... About...
I think that I have my own software consultancy and also wants SORM to grow. I also know that SimpleORM is a solid piece of software that I like a lot due to...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the SimpleORM group. File : /Related...
SimpleORM@yahoogroups...
May 6, 2005 1:25 am
1129
I've created an eclipse project and a build file for my classes - which I will call 'SimpleDM' from now on, following SimpleORM's example ;) I've uploaded a...
Um, you will be tightly coupled to whatever ORM that you use. Your application will not be able to change without major work. That's the way it is. With...
Anthony & Melissa Ber...
berglas@...
May 7, 2005 8:28 am
1131
Hi, I quite agree with you... In fact I am trying to decouple the different layers, but ORM is clearly an area where switchnig tools is not that simple. Then...
Hello Eli, Yes, I like Butler. A very thin layer on JDBC. UI oriented. Obviously built by people that build real systems rather than O-O zealots. They use...
Anthony & Melissa Ber...
berglas@...
May 7, 2005 10:36 am
1133
Please don't create DAO layers! The goal is to keep it simple, minimize bookkeeping code. Just but your methods in the SRecordInstance subtype. Very easy. ...
Anthony & Melissa Ber...
berglas@...
May 7, 2005 10:47 am
1134
It changes the SELECT to a SELECT DISTINCT, which can be useful for some reverse joins. (See SDriver.SelectSQL.) Regards, Anthony...