Re: Error using generate for select

2006-03-16 Thread Clinton Begin
Hi Ryan,Yeah, sounds like the projection should be generated from the resultMap...I'm surprised it's not. Gilles, can you confirm?Cheers,ClintonOn 3/16/06, Benoit, Ryan [EMAIL PROTECTED] wrote: Hello, I'm using Ibatis .NET v1.2.1on a project and Iam having some difficulty with the generate for

Re: Having trouble just getting sqlMap Config validated

2006-06-19 Thread Clinton Begin
Heh.. I had the same experience, I couldn't get SQLMap Config validated, the world was badThen Gilles sent me a small sample app that worked fine. I never did figure out what the problem was, but it sounds exactly the same as yours. ClintonOn 3/25/06, Rick Reumann [EMAIL PROTECTED] wrote:

Re: Unsubscribe my mail ID from Ibatis forums...

2006-06-22 Thread Clinton Begin
Harinder, it's important that you understand this:We do not maintain the mailing lists. YOU DO. Send an email to [EMAIL PROTECTED] to unsubscribe from each of the lists that you subscribed to. For example:[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] [EMAIL PROTECTED]...It's pretty

Field names conflict with Property names when automapping

2006-07-12 Thread Clinton Begin
Hi guys,Are you aware that field names conflict with property names when automapping columns? So a class written like: public class Customer { private int id; public int ID { get { return id; } set { id = value; } } }... will cause iBATIS.NET to fail

Re: Field names conflict with Property names when automapping

2006-07-12 Thread Clinton Begin
hierarchy. First check for property with the name, then check for the field. Otherwise, we'll need to have specific mappings like this: result property=FirstName column=FNAME/result field=LastName column=LNAME/Cheers,ClintonOn 7/12/06, Gilles Bayon [EMAIL PROTECTED] wrote: On 7/13/06, Clinton Begin

Domain classes from multiple assemblies...

2006-07-13 Thread Clinton Begin
Hi all, I feel like Obi Wan meeting Vader (Gilles) and he's looking at me saying: When I met you I was but the learner. Now, *I* am the master. Sorry, couldn't resist the Star Wars quote. Anyway I have a solution with a number of projects horizontally layered as one would expect (Data,

Re: Domain classes from multiple assemblies...

2006-07-16 Thread Clinton Begin
Ah ha!I see. I was looking for something like that. Just out of curiosity, why not just have an assembly= attribute on the typeAlias element? Cheers,ClintonOn 7/16/06, Gilles Bayon [EMAIL PROTECTED] wrote: Just to to clarify, alias typeAlias alias=Document type=DomainOne.Document, DomainOne /

Re: Domain classes from multiple assemblies...

2006-07-17 Thread Clinton Begin
o a single attribute into which a standard type name is placed. Jeremy Gray From: Clinton Begin [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 16, 2006 9:13 PM To: user-cs@ibatis.apache.org Subject: Re: Domain classes from multiple assemblies... I meant #2. It's verb

Re: Domain classes from multiple assemblies...

2006-07-17 Thread Clinton Begin
Gray From: Clinton Begin [mailto: [EMAIL PROTECTED]] Sent: Sunday, July 16, 2006 9:13 PMTo: user-cs@ibatis.apache.orgSubject: Re: Domain classes from multiple assemblies... I meant #2. It's verbose, but descriptive. typeAlias alias=Book type=DomainTwo.Book assembly=DomainTwo / I guess

Re: ResultMap with constructor injection

2006-07-17 Thread Clinton Begin
In Java land I was thinking of simply adding the following to the current result element...Currently we can do: result property =FirstName column=FIRST_NAME /I'd like to add... result field =_firstName column=FIRST_NAME/ !-- I'm not advocating underscores --...and... result column=FIRST_NAME /The

Re: ResultMap with constructor injection

2006-07-17 Thread Clinton Begin
constructorargument argumentName=id column=Account_ID/ argument argumentName=firstName column=Account_FirstName/argument argumentName=lastName column=Account_LastName/ /constructor/resultMap --- Clinton Begin [EMAIL PROTECTED] wrote: In Java land I was thinking of simply adding the following to the current

Re: Does JDBC 4.0 make iBATIS redundant?

2006-08-05 Thread Clinton Begin
category.The rest of the SQL statements are those 80-100 line select statements with dynamic elements...and as much as I like the StringBuilderclass...I still prefer dynamic elements to java code. ;-)So...top question on my list...can/should we use this for iBATIS3? ;-) LarryOn 8/4/06, Clinton Begin

[OT] ADO.NET vNext CTP Next Week

2006-08-12 Thread Clinton Begin
protected [mailto:mail protected@microsoft.com] Sent: August 11, 2006 4:09 PM To: Clinton Begin Subject: ADO.NET vNext CTP is coming soon I wanted to send a note specifically to the people that we've been working with closely over the last year on designs for the next version of ADO.NET to let

Re: how to map multiple result sets in .net

2006-08-15 Thread Clinton Begin
?RegardsRivaaj On 8/15/06, Clinton Begin [EMAIL PROTECTED] wrote: We just implemented it in the Java version. It was quite a mess to implement, due to the current over-layered design (my fault) but not impossible. Something similar could be done for the C# implementation. I can point you to the SVN change

Re: [OT] Wish List

2006-08-19 Thread Clinton Begin
Two of my friends at TW are writing .NET code on a Mac (using Parallels), and one of my friends at Microsoft bought a MacBook Pro and installed Windows XP on it (Bootcamp). So it can be done.I dunno. Me, I'll probably buy a Dell XPS M1210 (12). Cheers,ClintonOn 8/19/06, Martín Trejo Chávez [EMAIL

Re: FW: replace joins

2006-08-29 Thread Clinton Begin
Can you explain more about what you mean by replace? And why?Cheers,ClintonOn 8/29/06, Dorin Manoli [EMAIL PROTECTED] wrote: Hi people! Is there any good example how to replace sql JOINS in iBatis?

Re: [VOTE] Promote iBATIS DataMapper 1.5.1, DataAccess 18.1 to General Availability

2006-10-01 Thread Clinton Begin
+1. using it in productions it all looks greatClintonOn 9/29/06, Ted Husted [EMAIL PROTECTED] wrote: A belated +1. I'm back to work on my .NET project again, we updated to1.5 from 1.3 , and all lights are green!-Ted.On 8/7/06, Gilles Bayon [EMAIL PROTECTED] wrote: Hi all, After a cycle of 2 BETA,

Re: mapping 1 to 0 or 1 relationships to null objects

2007-01-22 Thread Clinton Begin
Some random thoughts... This is actually pretty good for what Ka-Wai is doing. However I just want to point out that EntityRef in DLINQ is not a good thing. It's only there because they refuse to do dynamic/runtime code generation to handle things like lazy loading. NHibernate doesn't need

iBATIS 2007: A book, DAO deprecated and iBATIS 3.0

2007-01-28 Thread Clinton Begin
section. The whiteboard can be found on the wiki, or by clicking this direct TinyURL link: http://tinyurl.com/2tbs46 Best regards, Clinton Begin

Re: ADO.NET Entity Framework

2007-01-31 Thread Clinton Begin
Bob and others Trust me, the Entity Framework won't even come close to iBATIS. Here is some information I can share (because it's already public): 1) The entity framework is a HUGE abstraction on top of your database. It's literally another layer. Databases have various layers including

Re: iBatis.net site down?

2007-06-24 Thread Clinton Begin
Hi guys, I believe the execute flag wasn't set on the cgi files. I've set it now and touched the files to force the update. The replicators should deploy it within the hour. Please let us know if it's not up in that time. Apologies for the inconvenience. Clinton On 6/21/07, Nabours, Mark

iBATIS Survey (10 Minutes)

2007-07-07 Thread Clinton Begin
Hi everyone, I've put together a simple survey to help us set the direction for future versions of iBATIS. Please fill it out to ensure that iBATIS remains or becomes the product you want. It should only take 10 minutes to fill out. The results are not displayed, but I will publish a summary

Re: iBATIS Survey (10 Minutes)

2007-07-08 Thread Clinton Begin
for responses) -Original Message- From: Clinton Begin [mailto:[EMAIL PROTECTED] Sent: Sunday, 8 July 2007 3:55 PM To: [EMAIL PROTECTED]; iBatis Java Mail List; user-cs@ibatis.apache.org Subject: iBATIS Survey (10 Minutes) It should only take 10 minutes to fill out. The results are not displayed

Re: iBATIS Survey (10 Minutes)

2007-07-08 Thread Clinton Begin
.. -Original Message- From: Clinton Begin [mailto:[EMAIL PROTECTED] Sent: Sunday, July 08, 2007 11:25 AM To: [EMAIL PROTECTED]; iBatis Java Mail List; user-cs@ibatis.apache.org Subject: iBATIS Survey (10 Minutes) Hi everyone, I've put together a simple survey to help us set the direction

Re: iBATIS Survey (10 Minutes)

2007-07-09 Thread Clinton Begin
for .NET...comments welcome. Sorry for the confusion and Java centric questions. Like I say, any ambiguous answers will be followed up by another survey (probably just a few questions in these specific areas). Best regards, Clinton On 7/9/07, Clinton Begin [EMAIL PROTECTED] wrote: For everyone

Re: iBATIS Survey (10 Minutes)

2007-07-10 Thread Clinton Begin
following in certain groups such as Castle's monorail. Admittedly, most .NET developers just drink the MS koolaid, so webforms is by far the most popular. I thought Spring.NET had a DAO framework, but I can't remember at the moment. -Original Message- From: Clinton Begin [mailto:[EMAIL

Re: Typehandler/Complex type/join question

2007-08-09 Thread Clinton Begin
Just a thought, you could try using the resultMap attribute of the result tag. Its implementation may be better for 0 or 1 cardinality. resultMaps resultMap id=CityResult class=City result property=Id column=CITY_ID/ result property=Name column=city_name / result

[OT] Crosspost: Facebook

2007-10-18 Thread Clinton Begin
Hi all, Just a note to let you know that there is a Facebook group created for iBATIS. It should not replace the mailing list for: A) User support B) Developer discussions C) Bug reports I suggest looking at it as a way of meeting other people who use iBATIS and share common interests. I'm

Re: Object AS references

2008-05-12 Thread Clinton Begin
Yes, this is the current behavior and will continue to be for Version 2. You can however imitate the behavior you want by enabling a cache for that statement. Version 3.0 has a 2 stage cache which will do this automatically, but for now, that's the best you can do. Clinton On Mon, May 12, 2008

Re: iBATIS read/write non-serialize cache

2008-05-13 Thread Clinton Begin
I think it might be the case of no parameters... for kicks, add a parameter to the query to see if that helps. a simple parameterClass=int should works. Also, which version are you using? I thought this was fixed... Clinton On Tue, May 13, 2008 at 11:02 AM, Eva Kwan [EMAIL PROTECTED] wrote:

Re: iBATIS read/write non-serialize cache

2008-05-13 Thread Clinton Begin
) { ... if (!cacheModel.IsReadOnly !cacheModel.IsSerializable) { cacheKey.Update(request); } return cacheKey; } Thanks, Eva -Original Message- From: Clinton Begin [mailto

Re: Next Release?

2008-05-30 Thread Clinton Begin
Hi Sal, I'm the lead developer of iBATIS for Java and the original creator of iBATIS. I don't think you have anything to worry about, as I believe that iBATIS.NET has a bright future and will possibly even surpass the success we've seen on the Java side. iBATIS for Java has a lot more

Re: iBATIS with Advantage Database Server

2008-08-12 Thread Clinton Begin
MS SQL Server and Sybase share TSQL, so conceivably Sybase should be the second best thing in terms of natural compatibility. Although I'm sure there are more Oracle/.NET users out there... so the network effect isn't as great with .NET/Sybase. :-) Clinton On Tue, Aug 12, 2008 at 8:26 AM, Jose

Re: How to check the use and reliability in the connection pooling

2009-01-12 Thread Clinton Begin
Enable log4j DEBUG on com.ibatis and java.sql. Clinton On 1/12/09, Juan Pablo Araya juanpablo.ar...@gmail.com wrote: Hi all, We are auditing a big web system with his own mapper (it's from 2002) that use a lot of connections. Each day they have to reset the web server in wich the

Re: How to check the use and reliability in the connection pooling

2009-01-12 Thread Clinton Begin
Lol... Sometimes I forget to check the list name. :-) On 1/12/09, Juan Pablo Araya juanpablo.ar...@gmail.com wrote: Thanks, It's the same way for C#? Greetings and sorry for my poor English On Mon, Jan 12, 2009 at 12:25 PM, Clinton Begin clinton.be...@gmail.com wrote: Enable log4j DEBUG

Re: 1.6.2 / V3 ???

2009-04-16 Thread Clinton Begin
Hey all, Gilles was making good progress on V3, and I think there are a few people already using the source build. I'm not sure why everything went quiet all of a sudden... Gilles? Ron? Clinton On Thu, Apr 16, 2009 at 9:30 PM, Yaojian sky...@gmail.com wrote: I asked the same question serveral

Re: Fluent Ibatis?

2009-05-23 Thread Clinton Begin
Yes, that would be the best place to start. Cheers, Clinton On 2009-05-23, Sal Bass salbass...@hotmail.com wrote: How do we round-up people who would be willing to carry the torch? Start a post here to get some names? I don't know where to start. I'm curious to see what kind of interest we

Re: Ibatis.Net - A Call to Arms

2009-05-25 Thread Clinton Begin
I'm not just saying this because I created ibatis. By all means, use NHibernate. But the ms entity framework is aweful. Unless they tossed out every last remnant of it's original incarnation, that won't change anytime soon. IMHO On 2009-05-25, Nick Zdunic n_zdu...@yahoo.com.au wrote: Not

Re: Ibatis.Net - A Call to Arms

2009-05-27 Thread Clinton Begin
Awesome to hear from you Ted! +1 On 2009-05-27, Ted Husted hus...@apache.org wrote: Speaking as an emeritus member, the best way to get further involved in open source is to ask yourself, What could iBATIS.NET do better for me? The reason products like EF miss the mark is because products

Re: [NOMINATION/VOTE] New iBATIS.NET Committer Team Members

2009-06-02 Thread Clinton Begin
Hi all, Based on these votes, I'm going to propose to the iBATIS PMC that the following two committers join Michael Schall and Ron Grabowski as committers on the Apache iBATIS.NET project. * Michael McCurrey * Sal Bass The next steps for these two are: * File an ICLA * I'll raise the

Re: How to Encode or Protect IBatis XML files

2009-06-09 Thread Clinton Begin
Of course. But are you asking this for a .NET or Java project? The other thing you can do is write an encoded/encrypted serializer that converts an XML file into some encoded form, then your app can decode it upon reading it in (tie it to a signed license key perhaps, to make it difficult for

Re: How to Encode or Protect IBatis XML files

2009-06-09 Thread Clinton Begin
PS: Just to be clear, you're not talking about people being able to navigate the iBATIS XML files via the web are you? On Tue, Jun 9, 2009 at 6:36 AM, Clinton Begin clinton.be...@gmail.comwrote: Of course. But are you asking this for a .NET or Java project? The other thing you can do

Re: How to Encode or Protect IBatis XML files

2009-06-09 Thread Clinton Begin
are working on the java project, and would like to encode the XML files into a JAR files, so as IBatis will load the queries from the jar file instead of XML's. If you can help on how to go about it or any document , will be highly appreciated. Thanks, Bhanwar Gupta Clinton Begin wrote

Re: [NOMINATION/VOTE] New iBATIS.NET Committer Team Members

2009-06-13 Thread Clinton Begin
Or ICLA rather... here's the link in case it was lost in the shuffle of emails: http://www.apache.org/licenses/icla.pdf Clinton On Sat, Jun 13, 2009 at 9:08 PM, Clinton Begin clinton.be...@gmail.comwrote: Have you all filed your ACLAs? Let me know, and I'll submit the request to create your

Re: [vote] Promote DataMapper 1.6 to General Availability

2009-08-04 Thread Clinton Begin
+1 On 2009-08-04, Andrea Tassinari andre...@i-mconsulting.com wrote: +1 Michael McCurrey wrote: Sorry for the delay in calling the vote - lot of stuff going on. Since there have been no major issues reported, I would like to call for a vote to promote ibatis.net datamapper 1.62 beta to

[ANNOUNCEMENT] iBATIS Project Team Moving to Google Code

2010-05-21 Thread Clinton Begin
the development of the framework at a new home and with a new name. This includes all of the iBATIS for Java committers: * Clinton Begin * Brandon Goodin * Jeff Butler * Larry Meadors * Nathan Maves * Kai Grabfelder And all of the iBATIS.NET committers: * Michael McCurrey * Ron Grabowski