HomeCommunityControl GalleryData & XML.Net DatabaseHandler 1.1

.Net DatabaseHandler 1.1



Submit a Review

441 Downloads

11,894 Views


Description

The .Net DatabaseHandler 1.1 is a data provider writen in C# and based on the .Net Framework 1.1 which is capable of handling database operations with different database systems. Use the same API for accessing MS SQL Server, MS SQL Server 2005, MS SQL Server 2005 Express Edition, MySQL and MS Access instead of having to struggle with the different .Net Framework base classes for each one of these databases.

Syntax Example

For MS Access: Provider provider = new Provider("MS Access", "connection string"); For MySQL: Provider provider = new Provider("MySQL", "connection string"); For MS SQL Server: Provider provider = new Provider("MS SQLServer", "connection string"); Use one of the following methods: int provider.GetIntValue(command); string provider.GetStringValue(command); bool provider.ExecuteNonQuery(command); object provider.GetDataReader(command); DataSet provider.GetDataSet(command);

Reviews

Submit a review