Re: .NET 4?

2010-05-18 Thread Michael McCurrey
I'm running it today with .net 4 and I'm good. On Tue, May 18, 2010 at 3:23 PM, Andrew Osman andrew.os...@gmail.comwrote: We compile the 1.6.2 source with .NET 3.5 SP1 and it works fine. I imagine it would work just fine with .NET 4.0. On Tue, May 18, 2010 at 4:21 PM, Chen Jin

Re: IbatisNet,Ibatis DataAccess and Connection Pooling

2010-05-10 Thread Michael McCurrey
Your connection pooling should be handled through your ado.net connection string; both SQL Server and Sybase have configuration options for this. I personally use the Castle project for my IOC framework and it works really well. On Mon, May 10, 2010 at 2:10 AM, Chetan V Minajagi

Re: iBatis.Net future release

2010-05-08 Thread Michael McCurrey
I agree with Michael Schall. My work duties school prevent me from doing the same. On Fri, May 7, 2010 at 7:36 PM, Michael Schall mike.sch...@gmail.comwrote: Not discontinued, but in need of a leader. I don't have the the time currently to devote to leading a new version, but would help

Re: Microsoft.NET iBatisNet DataReader

2010-04-26 Thread Michael McCurrey
There is an un-official patch that was submitted a few years back that still works that will patch the 1.X line to get a DataReader back. You can also pull the trunk for iBatis 3 which already produces the Reader / Table. 2010/4/26 michael.roe...@vattenfall.de Hi Guys, I am using the

Re: How can I contribute for the iBatis.Net project?

2010-04-01 Thread Michael McCurrey
Basically, submit patches is the best approach! You can also help out on documentation; that would be awesome! On Thu, Apr 1, 2010 at 4:19 PM, aranja0 aran...@gmail.com wrote: How can I participate in the development of iBatis .Net data mapper? I really like this framework and would like to

Re: Transaction across multiple SqlMapConfig

2010-03-23 Thread Michael McCurrey
What I currently do Jose is use the Castle framework and use its Transaction package. I currently span transactions across Oracle, SQL Server, and Teradata. You can find it here: http://www.castleproject.org/ On Tue, Mar 23, 2010 at 5:51 AM, jozeibatis jose.granja.marti...@gmail.comwrote:

Re: Any new release plan?

2010-01-19 Thread Michael McCurrey
Yes! Sorry, just been wrapped up in personal stuff lately. getting ready to do a release of the 1.X line with the partial trust support built in and prebuilt 3.4 and 4.x (beta 2) binaries, and a 'beta' of the 3.X line just before spring. On Mon, Jan 18, 2010 at 10:49 PM, Yaojian

Re: Options to implement nested transactions with iBatis.NET

2009-12-03 Thread Michael McCurrey
I personally use the Castle Windsor facility for my nested transactiosn and am working on a version that works for the IBatis v3 code line. On Thu, Dec 3, 2009 at 8:32 AM, Roger Champagne rcham...@gmail.com wrote: Hi, I just joined this mailing list this week, this is my first post. I must

Re: asp.net mvc x library x ibatis

2009-11-17 Thread Michael McCurrey
No problem, I'll see if I can help. This might just a problem with how your loading your SqlMap.config file. How are you loading it? From a file location or as an embedded resource? On Tue, Nov 17, 2009 at 5:44 AM, Juliana Machado juliana.machado...@hotmail.com wrote: Hi! Sorry my poor

Re: .net Apache

2009-11-17 Thread Michael McCurrey
To be honest, I haven't used the Spring.NET configuration, I'm using the Castle project (roughly the same thing). Somebody else on the forum might have used it or you can also post to the Spring group On Tue, Nov 17, 2009 at 8:56 AM, puow d...@dezmond.co.uk wrote: * Hi, I'm using Spring.NET

Re: Error occurred while loading SqlMap

2009-10-13 Thread Michael McCurrey
A few things I see wrong. 1. It looks like your putting the path to the type in the alias attribute, it should be in the type attribute 2. It looks like you have a namespace class the same (ie, ElementTypeEO is in there twice)? 3. Something to change... is the class public with an

Re: Object in multiple tables

2009-10-04 Thread Michael McCurrey
All depends on how you are going to be getting your primary key and how you would like it hydrated into your child tables. There are 2 ways to handle this, the first is to handle the inserts through a parent transaction and then do the subsequent insert calls through seperate mapper.Insert(...)

Re: Feature request: include inside iterate

2009-09-22 Thread Michael McCurrey
yes. that is a good one. On Mon, Sep 21, 2009 at 11:58 PM, Andrea Tassinari andre...@i-mconsulting.com wrote: Hi, I've never felt the urge of having the tag include refid= inside an iterate tag. Well I have a complex query where I have to UNION ALL a series of subqueries and finally

Re: Hastable and DateTime in DataMapper

2009-09-22 Thread Michael McCurrey
A couple of things you can try Teddy, One, if you can use Dictionarystring,DateTime instead of hashtable as your parameter, or in your inline map parameter do something like this: #date,dbType=Date,type=DateTime# (assuming your data column is a date column). On Tue, Sep 22, 2009 at 8:44 AM,

Re: generate tag not working

2009-09-03 Thread Michael McCurrey
, did you manage to take a look at it? Michael McCurrey-3 wrote: I'll take a look at it tonight Danny. Stay tuned. On Wed, Sep 2, 2009 at 12:02 AM, dannystommen da...@techconnect.nl wrote: Where can 1.6.3 be found? On ibatis.apache.org I can only find 1.6.2. I upgraded

Re: generate tag not working

2009-09-02 Thread Michael McCurrey
/update /statements /sqlMap Michael McCurrey-3 wrote: Can you update to 1.6.3 and see if it works, if not, send me your updated map file and I'll take a look. Did you change the result for both your insert and your update map? On Tue, Sep 1, 2009 at 8:18 AM, dannystommen

Re: generate tag not working

2009-09-01 Thread Michael McCurrey
Well, One thing I notice that is wrong is your using a result element in your parameter Maps. Instead of this: parameterMap id=insert class=Test result property=Name column=name / /parameterMap Try this: parameterMap id=insert class=Test parameter property=Name column=name /

Re: generate tag not working

2009-09-01 Thread Michael McCurrey
Can you update to 1.6.3 and see if it works, if not, send me your updated map file and I'll take a look. Did you change the result for both your insert and your update map? On Tue, Sep 1, 2009 at 8:18 AM, dannystommen da...@techconnect.nl wrote: Version 1.6.1 Michael McCurrey-3 wrote

Re: generate tag not working

2009-09-01 Thread Michael McCurrey
I think I meant 1.6.2, 1.6.3 is in the works.. On Tue, Sep 1, 2009 at 8:22 AM, Michael McCurrey mmccur...@gmail.comwrote: Can you update to 1.6.3 and see if it works, if not, send me your updated map file and I'll take a look. Did you change the result for both your insert and your update

Re: release plan for beta 1

2009-08-13 Thread Michael McCurrey
Very soon, the tests are passing but all the directly supported databases need to pass the unit tests first. I'm currently working on PostGre, and then there is the porting document the end-user documentation to do. On Thu, Aug 13, 2009 at 10:43 AM, sirmak irmakser...@gmail.com wrote: thanks

Re: [vote] Promote DataMapper 1.6 to General Availability

2009-08-09 Thread Michael McCurrey
Voting has closed, with more positive than negative votes, I'll update the website shortly and iBatis Datamapper 1.62 is now GA. On Mon, Aug 3, 2009 at 2:40 PM, Michael McCurrey mmccur...@gmail.comwrote: Sorry for the delay in calling the vote - lot of stuff going on. Since there have been

Re: Ibatis 3.0 Alpha Mono support

2009-08-06 Thread Michael McCurrey
I have not tested iBatis 3.0 on mono as of yet, but Mono support is definitely something I am shooting for. On Thu, Aug 6, 2009 at 1:11 AM, sirmak irmakser...@gmail.com wrote: Hi, Does Ibatis 3.0 Alpha supports Mono ? Cheers, -- View this message in context:

Re: Medium Trust Environments

2009-07-30 Thread Michael McCurrey
, 2009 10:35 PM *To:* user-cs@ibatis.apache.org; mich...@mccurrey.com *Subject:* Re: Medium Trust Environments I think there is a setting / to turn off the IL optimizations which means you can't use any of the lazy loading. -- *From:* Michael McCurrey mmccur

Re: Medium Trust Environments

2009-07-28 Thread Michael McCurrey
What type of ado.net driver are you using? On Tue, Jul 28, 2009 at 4:08 PM, Erin Rollenhagen e...@entrepreneurialtechnologies.com wrote: Hi Everyone, I know I’ve brought this up before but I don’t think there was ever an answer…I got around it at the time by switching from a GoDaddy

Re: RE : Re: Reuse of statement in an other statement

2009-07-10 Thread Michael McCurrey
, Régis BRULEY re...@bruley.org wrote: Hi, Test that's help. I saw this include. But can i pass a parameter in it ? It seems note working... Thanks again Régis Le 10 juil. 2009, 6:09 PM, Michael McCurrey mmccur...@gmail.com a écrit : You can, but not directly in how you have it. IBatis

Re: Is iBatis a good option nowadays ???

2009-06-29 Thread Michael McCurrey
iBatis is definitely a viable choice. There are many companies using it and it supports both normalized and non normalized scenarios. On Sun, Jun 28, 2009 at 11:32 PM, Marcelo de Oliveira olivert...@terra.com.br wrote: Hi everybody, I would like to know if iBatis is nowadays a reliable

Re: Next Release

2009-06-25 Thread Michael McCurrey
, 2009 at 8:33 PM, Ron Grabowski rongrabow...@yahoo.comwrote: The IBatisNetFacility for Castle isn't really being maintained anymore. Its not part of their build. It shouldn't require a lot of effort to freshen it up. -- *From:* Michael McCurrey mmccur...@gmail.com

Next Release

2009-06-22 Thread Michael McCurrey
Ok folks, I'd like to plan the next release of iBatis and would like to know What do you want? I would like to make a few small releases to bridge the 1.X line the existing 3.X line due to the number of breaking changes in the 3.X line. Some things I want to do for 'just me' are: 1. Feature

Re: Next Release

2009-06-22 Thread Michael McCurrey
for N+1 selects Allow for a column prefix when defining groupBy and resultMap so you can reuse resultMaps Mike On Mon, Jun 22, 2009 at 8:28 AM, Michael McCurrey mmccur...@gmail.comwrote: Ok folks, I'd like to plan the next release of iBatis and would like to know What do you want? I would

Re: Next Release

2009-06-22 Thread Michael McCurrey
/ *EMENTOR DANMARK A/S *:// LAUTRUPVANG 12 / DK-2750 BALLERUP / T :// +45 70 222 770 / M :// +45 72 208 194 / F :// +45 70 222 768 / MAIL :// tom.k...@ementor.dk tom.k...@ementor.dk/ EMENTOR.DK http://www.ementor.dk *From:* Michael McCurrey [mailto:mmccur...@gmail.com] *Sent:* 22

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

2009-06-15 Thread Michael McCurrey
clinton.be...@gmail.comwrote: Have you all filed your ACLAs? Let me know, and I'll submit the request to create your accounts. Clinton On Sat, Jun 13, 2009 at 8:55 PM, Michael McCurrey mmccur...@gmail.comwrote: Any movement on this at all? On Tue, Jun 2, 2009 at 8:18 AM, Clinton Begin

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

2009-06-13 Thread Michael McCurrey
project. * Michael McCurrey * Sal Bass The next steps for these two are: * File an ICLA * I'll raise the vote on the iBATIS PMC list right now (a required formality, but I can't see it failing) As soon as both are done, I can create accounts. NOTE: If you did not make it, then don't

Castle.DynamicProxy2

2009-06-10 Thread Michael McCurrey
So, I had some spare time last night and wanted to see how difficult it would be to port iBatisNet 1.6.2 to use Castle.DynamicProxy2 instead of Castle.DynamicProxy. I needed this for my own purposes as I don't like having to cart around both dlls. I managed to port it and in addition remove the

Re: Castle.DynamicProxy2

2009-06-10 Thread Michael McCurrey
not yet. On Wed, Jun 10, 2009 at 1:11 PM, Yaojian sky...@gmail.com wrote: Still not a committer? On Wed, Jun 10, 2009 at 11:05 PM, Michael McCurrey mmccur...@gmail.comwrote: So, I had some spare time last night and wanted to see how difficult it would be to port iBatisNet 1.6.2 to use

Re: Ibatis.Net - A Call to Arms

2009-06-01 Thread Michael McCurrey
Are there 3 committers still active to vote? On Sat, May 30, 2009 at 9:51 AM, Clinton Begin clinton.be...@gmail.comwrote: +1. I've always said, the committers can only make betas. The community has to tell us when it's GA worthy. Clinton On Sat, May 30, 2009 at 6:05 AM, Ted Husted

Re: IBATIS.NET - V3- Gets the IDataMapper from an IMapperFactory looks very strange

2009-06-01 Thread Michael McCurrey
PM, Michael McCurrey mmccur...@gmail.comwrote: I have no clue. I'm still wresting with with large scale changes between 1 and 3. On Mon, Jun 1, 2009 at 1:19 AM, Yaojian sky...@gmail.com wrote: The Apache.Ibatis.DataMapper.DefaultMapperFactory does not implement

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

2009-06-01 Thread Michael McCurrey
I think Clinton was going to tally it up. On Mon, Jun 1, 2009 at 12:13 PM, Yaojian sky...@gmail.com wrote: Any progress? -- Michael J. McCurrey Read with me at http://www.mccurrey.com

Re: Dirty Tracking Issue

2009-05-29 Thread Michael McCurrey
Elegant solution! For flexibility, It would be nice to do this either on a object alias basis or on a resultmap basis in the ibatis source. On Fri, May 29, 2009 at 9:08 AM, Yaojian sky...@gmail.com wrote: I have a new solution based on a custom ISetAccessor rather than the IObjectFactory.

Re: Ibatis.Net - A Call to Arms

2009-05-28 Thread Michael McCurrey
I agree with releasing 1.6.2 asap; it's stable. On Thu, May 28, 2009 at 7:12 AM, Yaojian sky...@gmail.com wrote: I think the 1.6.2 beta version is quite stable, make it GA as soon as posible is a signal that indicates the project is still active. Since someone in this user group said he uses

Re: Ibatis.Net - A Call to Arms

2009-05-28 Thread Michael McCurrey
28, 2009 at 10:20 AM, Michael McCurrey mmccur...@gmail.comwrote: Is anybody here *actively* developing any .net 1.X software with iBatis.net? I would hope not. On Thu, May 28, 2009 at 7:20 AM, Michael McCurrey mmccur...@gmail.comwrote: I agree with releasing 1.6.2 asap; it's stable

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

2009-05-27 Thread Michael McCurrey
I'd like to nominate myself for Committer. I've used Ibatis in both Java .net forms for a long time and feel I can contribute directly. I'd really like to also focus on moving the current production iBatis line to support DynamicProxy 2 rather than the old 1 version.

RE: New Release For .NET?

2008-11-01 Thread Michael McCurrey (5318)
We are looking to migrade to V3 soon on our side as well. I have been doing some prelimnary work on migrating the Castle iBatis facility to work with the V3 of IBatis.NET. Has anybody else been doing the same? I'd hate to do duplicate work. From: Gilles

RE: Next Release?

2008-06-03 Thread Michael McCurrey (5318)
Thats very good to hear as we are in the midst of a largescale migration from 'homegrown' to iBatis.net From: Clinton Begin [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2008 7:48 AM To: user-cs@ibatis.apache.org Subject: Re: Next Release? Hi Sal, I'm

RE: problem with update sql generation

2008-05-15 Thread Michael McCurrey (5318)
Giles, How far out do you anticipate V3 being? From: Gilles Bayon [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 11:59 AM To: user-cs@ibatis.apache.org Subject: Re: problem with update sql generation It's certainly a bug but sql generation in this

TransactionScope

2007-03-23 Thread Michael McCurrey
There seems to be an issue with the TransactionScope class I have 2 seperate dao managers, both of type SqlMap. When using 2 non-SQL map it works fine. {DaoProxy : unable to intercept method name 'Save', cause : The operation is not valid for the state of the transaction.} System.Exception

RE: [VOTE] Promote DataAccess V1.9.1 and DataMapper V1.6.1 to General Availability

2007-03-22 Thread Michael McCurrey
We've been using it in our project without incident. +1 Michael J. McCurrey USA Digital Solutions, Inc. 602.866.8199 - The scientific name for an animal that doesn't either run from or fight its enemies is lunch. From: Gilles Bayon [mailto:[EMAIL

Embedded SqlMap.config

2007-02-05 Thread Michael McCurrey
Is it possible to use a DLL embedded SqlMap.config file through the DataAccess portion of IBatis.net? I have moved the file to be a resource, and everything works just fine. However, switching to embedded I receive the following error: - The error occurred while configure DaoSessionHandler.