Patch attached.
Please also change the string concatentations to two
separate Append calls to increase efficiency.
==========================
RCS
file: /cvsroot/mysqlnet/mysqlclient/CommandBuilder.cs,v
retrieving revision 1.6
diff -u -r1.6 CommandBuilder.cs
--- CommandBuilder.cs 17 Mar 2003 22:22:18 -
0000 1.6
+++ CommandBuilder.cs 22 Mar 2003 10:46:17 -0000
@@ -296,6 +296,7 @@
cmd.Parameters.Add(p);
setstr.Append( colname );
+ valstr.Append( '@' );
valstr.Append(
p.ParameterName );
}
Logged In: YES
user_id=733114
hmm I am going to try that