Wednesday, December 28, 2005

Inserting Null Values into SQL Server "FINALLY"

After many months of frustration I finally discovered the code to post null values into SQL Server.

cmd.Parameters.Add("@Emp_EID", System.DBNull.Value);

Python Logging Best Practices

Python Logging Best Practices Introduction to Python Logging Importance of Logging in Business Applications Logging is an essential ...