"Where" and "like" causes Exception if parameter is longer than length defined in mapping

Description

If you use Texts for "where" and "like" which are longer as fields in database, exception will be thrown. This doesn't happend if you are using "native SQL" whith the same DataProvider (in this case Firebird)
For an examlpe:
myItem.Name defined in database as varchar(5)
/* This causes none exceptions*/
[Test]
public void Can_DoLikeIfTextToLongUsingNativeSQL()
{
ISession session = this.OpenSession();
FbConnection conn = new FbConnection(session.Connection.ConnectionString);

string query = @"select * from ITEMS
where ITEMS.Name like '%1234567890%'
";

FbDataAdapter da = new FbDataAdapter(query, conn);
DataSet ds = new DataSet();

da.Fill(ds);

Assert.AreEqual(0, ds.Tables[0].Rows.Count);

session.Close();
}

/But the same thing with NHibernate, throws an exception/
[Test]
public void Can_DoLikeIfTextToLong()
{
IList<myItem> result;

using (ISession session = this.OpenSession()) {
using (ITransaction trans = session.BeginTransaction()) {
result = session.CreateCriteria<myItem>()
.Add(Restrictions.Like("Name",
"%1234567890%" /longer as field in database, causes exception, but the same code using Native-SQL works/
).IgnoreCase())
.List<myItem>();

}
}
}

See attached TestFixture.
As possible solution, Nhibernate could cut off text if it's longer as field defined in mapping.

Environment

None

Attachments

1

Activity

Show:

Oskar Berggren December 16, 2012 at 3:03 PM

Turns out this has nothing to do with AbstractStringType.

Your native test case works because it does not use parameters. This parameterized version fails however:
cmd.CommandText = @"select * from ITEMS where ITEMS.Name like @tp";
var param = cmd.CreateParameter();
param.ParameterName = "tp";
param.Value = "%1234567890%";
cmd.Parameters.Add(param);

This is a rather silly limitation in Firebird, where it insists that the length of parameters not exceed the length of the column it's compared to:
http://tracker.firebirdsql.org/browse/CORE-251
http://tracker.firebirdsql.org/browse/CORE-3559

Oskar Berggren December 10, 2012 at 1:38 PM

While the claimed exception isn't included in the report, this is likely related to the newly added parameter size check in AbstractStringType.

Oskar Berggren December 3, 2012 at 1:23 PM

Ńevermind mappings, they're in the attachment of course.

Oskar Berggren December 3, 2012 at 1:22 PM

What are the relevant mappings?

Oskar Berggren November 12, 2012 at 9:19 PM

What is the exception message and stack trace?

External Issue

Details

Assignee

Reporter

Labels

Components

Affects versions

Priority

Who's Looking?

Open Who's Looking?

Created June 6, 2012 at 2:15 PM
Updated December 21, 2012 at 6:36 PM
Resolved December 21, 2012 at 6:36 PM
Who's Looking?