Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
282 views

Reduce number of config files to as few as possible

For most of my applications I use iBatis.Net for database access/modeling and log4Net for logging. In doing this, I need a number of *.config files for each project. For example, for a simple ...
5
votes
1answer
179 views

Is there active development going on IBatis.Net DataMapper?

Is there active development going on IBatis.Net DataMapper? Do they have version for .Net 3.5. I saw lots of activity on iBatis Java DataMapper as they are planning to release iBatis3 with annotation ...
5
votes
3answers
5k views

How to serialize an IList<T>?

I've got an OR mapper (iBatis.Net) that returns an IList. // IList<T> QueryForList<T>(string statementName, object parameterObject); var data = ...
3
votes
4answers
3k views

Too many parameters were provided in this RPC request. The maximum is 2100.?

A search query returned this error. I have a feeling its because the in clause is ginormous on a subordinant object, when I'm trying to ORM the other object. Apparently in clauses shouldn't be built ...
3
votes
3answers
2k views

What is the difference between NHibernate and iBATIS.NET?

I am looking for some up to date information comparing NHibernate and iBATIS.NET. I found some information searching Google, but a good bit of it applies either to the Java versions of these products ...
2
votes
0answers
313 views

IBATIS - Stored procedure timeout

i have this procedure statement <procedure id="InsertIOs" parameterMap="InsertIOsParams"> SP_InsertIOs </procedure> </statements> <parameterMaps> ...
2
votes
1answer
300 views

Is there a Query-Mapper like iBATIS.NET but with dirty tracking, lazy-loading and cascading updates?

The problem: A DBA-controlled database with a Stored Procedure-only mandate. An expectation that the domain be defined in POCO's. So I decided that I need an ORM designed for stored procedures ...
2
votes
1answer
574 views

iBatis.Net SQL Server Compact Edition 3.5

I want to migrate one of our databasis from SQL Server Express to SQL Server Compact 3.5. I'm using iBatis.Net but do not know what the providers.config must look like for me to be able to access SQL ...
2
votes
1answer
428 views

caching per request in ASP.NET?

I'm using both IBatis.NET and Spring.NET on a project at work and I'd like to figure out if I can leverage both/either frameworks to achieve "per-request caching" on all calls into my DAL layer. In ...
1
vote
1answer
40 views

WCF App Needs to be “Kick-started” by Cohabiting Web App

I'm dealing with a rather bizarre problem here and looking to see if anyone could offer a tip. The Problem: When I try to consume the service from my local C# app, it fails when accessing the ...
1
vote
1answer
247 views

ibatis.net datetime and dynamic sql

how can i test if a property of type dateTime contains value on dynamic sql statement with ibatis.net my mapping file is as follow, but it does not work <select id="Select" resultMap ...
1
vote
2answers
295 views

byte? doesn't work as a parameter type in an iBatis parameterMap

According to the iBatis docs, using "byte?" as a type value should work in parameterMap. I'm using DataMapper version 1.6.1. The error message I'm getting is: Could not load type from string value ...
1
vote
0answers
212 views

Handling Transactions in DAO with an Injected iBATIS.NET SQL Mapper

I am currently using iBATIS.NET for a small application I am building. I like to create concrete Classes for my DAOs instead of using ISqlMapper directly and invoking named SQL statements. I am not ...
1
vote
2answers
167 views

ibatis - where to place the <cacheModel> tag?

I have the map config file like this <sqlMap ..............> <alias> <typeAlias ......../> </alias> <statements> .... ...
1
vote
0answers
232 views

Exception of type 'System.OutOfMemoryException' was thrown

Hi I have an application which throws "Exception of type 'System.OutOfMemoryException'". Which reduces the performance of the server,the CPU usage was around 95%. I dont know the reason why ...
1
vote
4answers
2k views

Getting stored procedure's return value with iBatis.NET

How can I retrieve the return value of a stored procedure using iBatis.NET? The below code successfully calls the stored procedure, but the QueryForObject<int> call returns 0. SqlMap ...
1
vote
2answers
526 views

ibatis.net or nhibernate on mono

I need a stable orm or dataccess framework to use with mono 2.4.2.3. Does anyone used ibatis.net (3.0 alpha or older) or nhibernate 2.1 on mono, are they solid enough for production use ? Regards, ...
1
vote
1answer
402 views

Can iBATIS.NET work with ICollection?

This question is in relation to another question I have: http://stackoverflow.com/questions/603808/using-ibatis-net-with-generic-custom-collection-interfaces-and-unity The problem seems to be that ...
1
vote
1answer
1k views

Using iBATIS.NET with generic custom collection interfaces and Unity

I'm trying to use a generic custom collection interface (to support injection with Microsoft Patterns and Practices Unity) in a class O/R mapped with iBATIS.NET. Does anyone know if this is possible ...
1
vote
2answers
1k views

Best way to retrieve the connection string for IBATIS.NET from the web.config

I have an web application where I have a requirement to encrypt and store the connection string in the web.config. What is the best way to retrieve this and use this connection string with ...
0
votes
1answer
38 views

In iBatis with C#, how to check for if a lazy loaded property is null

I have an object (Cart) which have a one-to-one relation to a Case. This relation is allowed to be null and is lazyloaded. So sometimes a Cart has a case, sometimes it doesn't. And if it does have a ...
0
votes
1answer
45 views

create dynamic query Ibatis

Is there any way to pass dynamic column names ? we can pass values ussing ## value# Where #columnName# = #value# not work for me
0
votes
0answers
51 views

Cannot get logging output from iBATIS.NET

My application is using the iBATIS.NET Data Mapper version 1.6.3. A recent modification is causing a SqlException and I would like to see the query that it is trying to execute, so I added the ...
0
votes
1answer
192 views

Problem passing a huge string to an stored function via IBatis.Net

I have the following type and function: CREATE OR REPLACE TYPE SERIAL_NUMBER_TABLE AS TABLE OF VARCHAR2(4000); CREATE OR REPLACE FUNCTION F_DEVICE_SERIAL_TABLE( SN_LIST IN CLOB, ...
0
votes
0answers
129 views

ibatis.net isGreaterThan and enumerations

the operator isGreaterThan doesn't work when used with enummerations i have the snippet bellow in a dynamic statement <select id="SelectCongeTest" resultMap ="CongeResult" ...
0
votes
0answers
387 views

custom TypeHandler not working in iBatis.Net?

Hey, I have problems using custom TypeHandler in iBatis.Net. basicly, UserEntity.Id is a string property, but in sql server it's guid (uniqueindentifier?). I wrote a custom typehandler to ...
0
votes
0answers
206 views

iBatis.NET: Querying for object with list of objects

I have a plain .net object that has fields/properties that I am populating using iBatis.NET. A few of the fields within this object are either other plain .net objects or lists of plain .net objects. ...
0
votes
1answer
848 views

iBatis.NET to insert record with Oracle stored procedure, return record ID

I am attempting to insert a record in an Oracle table with a Function, which would be called through iBatis.NET. Function works as expected in Oracle when called directly. I have tried using ...
0
votes
1answer
165 views

iBatis schemas not working in Visual Studio 2010

iBatis comes with three schema files that provide intellisense to VS.Net. According to the iBatis help docs, the location should be this: C:\Program Files\Microsoft Visual Studio ...
0
votes
1answer
168 views

ibatis - cannot set cacheModel

I want to set cacheModel on an insert and i do it like this: <select id="SelectAll_Cache" resultClass="SN" cacheModel="cache-select-all"> <include refid="GetAll_SN"/> </select> ...
0
votes
1answer
384 views

IBatis.net converting project from VS2003 to VS2008 crashes on load

The project has been working fine in 2003 but when opening it in 2008 we now get the below error. I've tried ripping all of the code out of the 'Accessory' result map and then it just goes onto the ...
0
votes
2answers
366 views

Maintaining / Auto-generating IBatis SQL Maps?

I just started a new job and inherited the project from hell. Hell = {2 years over schedule, overly complex, uses both oracle and sql server} There are 100+ stored procedures in the Oracle server and ...
0
votes
1answer
577 views

iBatis.NET SqlMap.config file not found

I am using iBatis.NET in a very simple test project (VS 2008). When I run the suite and the Mapper is instantiated a FileNotFoundException pops up on opening SqlMap.config. The path where iBatis.NET ...
0
votes
2answers
369 views

Need help for IBatis?

I am using IBatis for my applicaiton. I am using IBatis 1.6.1 version.I thought it can handle all operations related to DB connections. But I am having little bit concern about this now. Sometimes I ...
0
votes
1answer
131 views

ibatis.net - isqlmapper.BeforeQuery missing in 1.6.1

We are trying to upgrade to iBatis.Net DataMapper 1.6.1 (from 1.5.1). I am getting an error on this line: ((SqlMapDaoSession)daoManager.GetDaoSession()).SqlMap.BeforeQuery += new ...
0
votes
2answers
256 views

iBatisNet with c#.Net 3.0

Does any body know where to get iBatisNet with DomSqlBuilder in C#.Net and Sql Server provider?
0
votes
1answer
901 views

Reusing a resultMap for different column names

Is there a way of reusing the same resultMap multiple times in a single query. For example, suppose I have a "foo" resultMap: <resultMap id="foo" class="Foo"> <result property="Bar" ...