http://blogs.msdn.com/b/scott_hanselman/archive/2011/11/29/window-iis-node-js.aspx
http://webpagesnapshot.cnblogs.com/cate1/108703/9
MySQL tables are easy to extend with additional columns.
To add a column called email to the contacts table created in Create a basic MySQL table with a datatype of VARCHAR(80), use the following SQL statement:
ALTER TABLE contacts ADD email VARCHAR(60);
This first statement will add the email column to the end of the table. To insert the new column after a specific column, such as name, use this statement:
ALTER TABLE contacts ADD email VARCHAR(60) AFTER name;
If you want the new column to be first, use this statement:
ALTER TABLE contacts ADD email VARCHAR(60) FIRST;
To add a column called email to the contacts table created in Create a basic MySQL table with a datatype of VARCHAR(80), use the following SQL statement:
ALTER TABLE contacts ADD email VARCHAR(60);
This first statement will add the email column to the end of the table. To insert the new column after a specific column, such as name, use this statement:
ALTER TABLE contacts ADD email VARCHAR(60) AFTER name;
If you want the new column to be first, use this statement:
ALTER TABLE contacts ADD email VARCHAR(60) FIRST;
http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/
http://3609884.blog.51cto.com/3599884/978569
http://pypi.python.org/pypi/pymongo/
http://cnodejs.org/topic/4f16442ccae1f4aa2700104d
http://www.cnblogs.com/flyoung2008/archive/2012/07/16/2593602.html
http://blog.csdn.net/dellheng/article/details/7076461
http://www.nodebeginner.org/index-zh-cn.html#a-full-blown-web-application-with-nodejs
http://www.infoq.com/cn/articles/nodejs-about-buffer
+++++++++++++++++++++++++=
http://blog.csdn.net/wklken/article/details/6342966
http://mms.10gen.com/help/install.html