-
Notifications
You must be signed in to change notification settings - Fork 931
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ISQLQuery.ExecuteUpdate produces an exception in certain cases #3618
Comments
I think it's a your plain SQL string that contains colon (:). Because NHibernate will handle as parameters. You can see more in docs: https://nhibernate.info/doc/nhibernate-reference/batch.html Section 14.3 gives the example. using (ISession session = sessionFactory.OpenSession())
using (ITransaction tx = session.BeginTransaction())
{
string hqlUpdate = "update Customer c set c.name = :newName where c.name = :oldName";
// or string hqlUpdate = "update Customer set name = :newName where name = :oldName";
int updatedEntities = s.CreateQuery(hqlUpdate)
.SetString("newName", newName)
.SetString("oldName", oldName)
.ExecuteUpdate();
tx.Commit();
} I had this problem when using string with colon when running this kind of SQL. You can change your SQL string to not allow colon character or you can call another method that hasn't parameter handling like create DbCommand. var sqlCommand = session.Connection.CreateCommand(); //session is a ISession instance
sqlCommand.CommandText = "INSERT INTO table(column) VALUES (':this_is_not_a_parameter')";
sqlCommand.ExecuteNonQuery(); |
I am pretty sure the bug I am logging could not possible be the expected functionality. And let me try to explain why. But the bug that I am reporting is not even about that. The bug happens where there is a combination of the ":" character, new lines and "--" characters in different parts of the query. |
@dimako it seems that depends on query NHibernate will perform as parameter or not. using (var session = NHibernateHelper.OpenSession())
{
session.CreateSQLQuery(@"
INSERT INTO Table (description) VALUES (N'
--');
INSERT INTO Table (description) VALUES (N'
X:
');
").ExecuteUpdate();
} The code above will cause the same error. But if I change the first insert with a break line character, it works fine: using (var session = NHibernateHelper.OpenSession())
{
session.CreateSQLQuery(@"
INSERT INTO Table (description) VALUES (N'
--
');
INSERT INTO Table (description) VALUES (N'
X:
');
").ExecuteUpdate();
} It seems that NHibernate thinks the 'X:' in the second query is within quotes, but in the first case, NHibernate perform as 'X:' is outside quotes. It happens on NHibernate.Engine.Query.ParameterParser.Parse(string query, IRecognizer recognizer) method. The sequence of reading is simple, the problem is the '--' characters, because it is the common line comments on SQL. So in the first case, NHibernate reads like:
The second case, NHibernate will read like:
The problem happens on line 65, which consider that if we start a new line with
But the correct way is verify if we are not inQuote, because will not be a comment:
If you has not parameter at all. You can perform the SQL with another method as DbCommand in my first answer. But if you need to perform your SQL with named parameters replace, you will have problems in the case of closing quotes after line which starts with |
Thanks @rodrigo-web-developer for such a detailed explanation. I hope it will make it easier for the NH team to address that. Meanwhile we're going to come up with a workaround. |
I had problems before with ExecuteUpdate() because I work with PostgreSQL and it has a CAST operator I prefer to not use it, creating functions, views, updates, inserts etc will cause error when casting in Postgres. If I dont need named parameters here, DbCommand will works fine. All my SQL strings are plain SQL with no interpolation and has no string.Replace calls. But if you need to write SQL with named parameters, this will be a problem. I have no time now to create a PR to solve your problem, but I hope with my debugging NH devs can fix this for you asap. Best regards. |
NHibernate v5.5.2, .Net Framework 4.8
Table definition:
sql CREATE TABLE JustText(c nvarchar(max))
Failing test
The test is failing with the exception:
The text was updated successfully, but these errors were encountered: