开发者

Argument Exception in DeriveParameters method

开发者 https://www.devze.com 2023-01-07 20:37 出处:网络
Dim id as integer = 1 Dim command as sqlcommand Dim reader as idatareader command = db.GetSqlStringCommand(\"select id, image, caption from profile where id = @id and image IS NOT NULL Order By NEWID
Dim id as integer = 1
Dim command as sqlcommand
Dim reader as idatareader

command = db.GetSqlStringCommand("select id, image, caption from profile where id = @id and image IS NOT NULL Order By NEWID()")
db.AddInParameter(command, "@id", DbType.Int32, id)
reader = db.ExecuteReader(Command)

The code is throwing an error I've never seen before....

开发者_开发问答

SqlCommand.DeriveParameters failed because the SqlCommand.CommandText property value is an invalid multipart name "/port:4544 /path:"C:\sitepath" /vpath:"/sitepath"", incorrect usage of quotes.

How do I fix that error.


It looks like the code is failing at a deeper level than the code you have posted. I have received a similar error from within SQLServer Management Studio when I have not correctly defined the path to my DB. How are you setting up the object 'db'?

What is your connection string? (Without password! :-))

The error is obviously related the badly formed string in terms of the quote positions. Do you know where entlib is constructing this string and how parts of it such as "C:\sitepath" are appearing with quotes as opposed to being appended as string literals?

I wonder if somewhere there is a declaration such as

Dim sRootPath As String = """C:\sitepath"""

..which is leading to the quotes being inserted into the constructed string.


I never saw this error, but perhaps this link helps: http://entlib.codeplex.com/Thread/View.aspx?ThreadId=60513

"What version of entlib is this? There's no overload in 4.1 for ExecuteReader that accepts an sql statement, there is one accepting a string but it should be the stored procedure name. Probably you are using this overload but I'm not sure since I'm getting a different error if I pass an sql statement"


I don't know about the error but the order by NEWID() bothers me a little. With newid() SQLServer calls the newid() function for each row in your dataset.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号