ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/trunk/AnywhereTS.DBSupport/MSSQLConnector.cs
Revision: 134
Committed: Sun Jul 15 05:13:20 2012 UTC (11 years, 2 months ago) by william
File size: 1577 byte(s)
Log Message:
+ fix errors in database
+ logon to 'master' database and refer to our database is sql statments
+ remove empty GO statements from end of .sql files

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 using System.Data.SqlClient;
5 using System.Linq;
6 using System.Text.RegularExpressions;
7 namespace AnywhereTS.DBSupport
8 {
9 public class MsSqlConnector : DBConnector<SqlParameter,SqlCommand,SqlConnection,SqlDataAdapter>
10 {
11 public MsSqlConnector(string DBServerAddress, string DBServerInstance, string DBDatabase) : base(DBServerAddress, DBServerInstance, DBDatabase) { }
12
13
14 protected override bool ClientRunScript(string strFile, out Exception ErrorInfo)
15 {
16 ErrorInfo = null;
17 try
18 {
19 var commands = Regex.Split(strFile, string.Format(@"^GO{0}", System.Environment.NewLine), RegexOptions.IgnoreCase | RegexOptions.Multiline);
20 foreach (var command in commands)
21 {
22 Logging.DatabaseLog.DebugFormat("Current Command={0}", command);
23 SqlConnection sqlCon;
24 this.GetConnectionClone(out sqlCon,out ErrorInfo);
25 SqlCommand sqlcmd = new SqlCommand(command, this.connection);
26 sqlcmd.CommandText = command;
27 sqlcmd.Connection = sqlCon;
28 sqlcmd.CommandType = System.Data.CommandType.Text;
29 sqlcmd.ExecuteNonQuery();
30 }
31 return true;
32 }
33 catch (Exception ex)
34 {
35 ErrorInfo = ex;
36 throw ErrorInfo;
37 }
38 }
39 }
40 }