Browse by Tags

14 May 2007
Bulk Update and Insert of Object State Stored by SQL Server 2000, Using .NET (C#)
This is a how to/quick start for doing bulk inserts or updates of data on SQL Server 2000 and .NET. 1. Create a simple class: using System; ... ... [Serializable] public class Entity { private int _id; private string _name; private string _description; public int ID { get { return _id; } } public string... Read More...
31 January 2007
Setting up MySQL for Python (MySQLdb) on Mac OS X
MySQL is an excellent, very popular and open source database management system. A binary installation is available for Mac OS, and the process of installing MySQL on Mac OS is also very well documented. So just head over to MySQL.com , where you will find the binary installation, together with extensive... Read More...