コード例 #1
0
 public SqlGetPhysicalFilePathWorker(SqlConnection connection, out ISqlGetPhysicalFilePathWorkerReturnedData data)
     : base(connection)
 {
     data = this.data = new ReturnedData();
 }
コード例 #2
0
 public SqlWorkerBase CreateSqlGetPhysicalFilePathWorker(ISqlWorkerConnection connection, out ISqlGetPhysicalFilePathWorkerReturnedData data)
 {
     return new SqlGetPhysicalFilePathWorker(connection.Connection, out data);
 }
コード例 #3
0
   public SqlGetPhysicalFilePathWorker(string server, string database, AuthenticationType authenticationType, string user, string password,
 out ISqlGetPhysicalFilePathWorkerReturnedData data)
       : base(server, database, authenticationType, user, password)
   {
       data = this.data = new ReturnedData();
   }
コード例 #4
0
 public SqlWorkerBase CreateSqlGetPhysicalFilePathWorker(string server, string database, AuthenticationType authenticationType, string user, string password, out ISqlGetPhysicalFilePathWorkerReturnedData data)
 {
     return new SqlGetPhysicalFilePathWorker(server, database, authenticationType, user, password, out data);
 }