From:
<car...@te...> - 2003-11-20 09:27:54
|
Hello: > When I insert this string: string t = "@123"; in my database, > only a "?" is appear in the database. Thew @ is used inside the command text for denote a named parameter, named parameters detection is made using regular expressions: at this moment this the regex used: (@{1}\w+) in beta 2 it was: (@([a-zA-Z-$][a-zA-Z0-9_$]*)) But it's not handling ok the @ wen it appears inside '', if anybody knows how to modify it for handle ok this case i will be more than happy of modify it :) You can use parametrized querys for solve the problem. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |