| Author |
|
| Company |
N/A |
| Source Code Available |
No |
| License Type |
Free |
| Submitted On |
January 24, 2006 |
| Updated on |
July 25, 2007 |
| .NET Framework |
1.x |
| Cost |
$ 0 |
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