On Wed, Dec 10, 2008 at 4:20 AM, Wolfgang Mauer <[EMAIL PROTECTED]> wrote:
>                        string commandText = String.Format("UPDATE `{0}` SET", 
> table.TableName);
>                        string whereText = " WHERE";

>                                        whereText += String.Format(" `{0}` = 
> ?{0}", column.ColumnName);

>                                        commandText += String.Format(" `{0}` = 
> ?{0},", column.ColumnName);

Not related to your crash and stuff, but if there's a lot of columns
in the table then you'll get much better performance if you use a
StringBuilder to build your query strings.

-- 
Chris Howie
http://www.chrishowie.com
http://en.wikipedia.org/wiki/User:Crazycomputers
_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to