1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Text; |
4 |
using System.Data.SqlClient; |
5 |
using Microsoft.SqlServer.Management.Common; |
6 |
using Microsoft.SqlServer.Management.Smo; |
7 |
|
8 |
namespace AnywhereTS.DBSupport |
9 |
{ |
10 |
public class MsSqlConnector : DBConnector<SqlParameter,SqlCommand,SqlConnection,SqlDataAdapter> |
11 |
{ |
12 |
public MsSqlConnector(string DBServerAddress, string DBServerInstance, string DBDatabase) : base(DBServerAddress, DBServerInstance, DBDatabase) { } |
13 |
|
14 |
|
15 |
protected override bool ClientRunScript(string strFile, out Exception ErrorInfo) |
16 |
{ |
17 |
ErrorInfo = null; |
18 |
try |
19 |
{ |
20 |
Server server = new Server(new ServerConnection(this.connection)); |
21 |
server.ConnectionContext.ExecuteNonQuery(strFile); |
22 |
return true; |
23 |
} |
24 |
catch (Exception ex) |
25 |
{ |
26 |
ErrorInfo = ex; |
27 |
return false; |
28 |
} |
29 |
} |
30 |
} |
31 |
} |