Add description to functions and parameters in .NET

August 7th, 2009 Phanix

While using some library functions in Visual Studio .NET, you can always find such kind of descriptions which help you to get some idea of parameters and functions.

csharp_function_description (by Phanix)

However, how to provide such kind of descriptions in your class libraries?

Plz refer this! http://www.codeproject.com/KB/XML/csharpcodedocumentation.aspx?msg=1643354

Allow multiple statements in MySQL ODBC

August 7th, 2009 Phanix

While using MySQL ODBC to execute sql statements, only single sql statement is allowed for execution by default. If you want to execute multiple sql statements at once, you have to enable the multiple statements setting in MySQL ODBC.

mysql setting  ODBC multiple statement (by Phanix)