Tip Bank

DevX - Software Development Resource

Using Data Wizards in .NET 2.0

When you use the data wizards in .NET 2.0, the connection string property is read only. However, the following code shows you how to change the connection string: ‘set a

DevX - Software Development Resource

Creating Tables in the Default Tablespace

Developers typically create tables in the default tablespace. Most of them are not familiar with the actual tablespaces concept and are not aware that this is responsible for the issues

DevX - Software Development Resource

Validate an XML Document Only When a DTD Exists

Learn how to use the DOMImplementationDS and DOMConfiguration classes to validate an XML document only when a DTD document can be found: DOMImplementationLS DOMiLS=null;? //get a LSParser object LSParser LSP=DOMiLS.createLSParser(

DevX - Software Development Resource

Concatenating Strings

When you’re concatenating only a few strings, it’s faster to add them than to use StringBuilder. Suppose you want to decompile the following code: string a = “a”;string b =