Revision: | 85 |
Committed: | Fri Jul 13 21:10:26 2012 UTC (11 years, 2 months ago) by william |
File size: | 415 byte(s) |
Log Message: | + add support for database access from: * SQL Server Express * SQL Server (not Express) * SQL Server MDF file |
# | Content |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | using System.Data.SqlClient; |
5 | |
6 | namespace AnywhereTS.DBSupport |
7 | { |
8 | public class MsSqlConnector : DBConnector<SqlParameter,SqlCommand,SqlConnection,SqlDataAdapter> |
9 | { |
10 | public MsSqlConnector(string DBServerAddress, string DBServerInstance, string DBDatabase) : base(DBServerAddress, DBServerInstance, DBDatabase) { } |
11 | } |
12 | } |