장비목록에서 엑셀 가져올때 오류 처리 작업

장비목록 디비 기록시 팝업 창 추가
장비목록에서 날짜를 역정렬 하도록 수정
This commit is contained in:
chikyun.kim
2018-09-17 16:39:34 +09:00
parent 650ec72616
commit c209a974c0
9 changed files with 252 additions and 149 deletions

View File

@@ -6594,11 +6594,11 @@ namespace FEQ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string code {
get {
try {
return ((string)(this[this.tableLineCode.codeColumn]));
if (this.IscodeNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'LineCode\' 테이블의 \'code\' 열의 값이 DBNull입니다.", e);
else {
return ((string)(this[this.tableLineCode.codeColumn]));
}
}
set {
@@ -6610,11 +6610,11 @@ namespace FEQ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string team {
get {
try {
return ((string)(this[this.tableLineCode.teamColumn]));
if (this.IsteamNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'LineCode\' 테이블의 \'team\' 열의 값이 DBNull입니다.", e);
else {
return ((string)(this[this.tableLineCode.teamColumn]));
}
}
set {
@@ -6626,11 +6626,11 @@ namespace FEQ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string part {
get {
try {
return ((string)(this[this.tableLineCode.partColumn]));
if (this.IspartNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'LineCode\' 테이블의 \'part\' 열의 값이 DBNull입니다.", e);
else {
return ((string)(this[this.tableLineCode.partColumn]));
}
}
set {
@@ -6642,11 +6642,11 @@ namespace FEQ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool except {
get {
try {
return ((bool)(this[this.tableLineCode.exceptColumn]));
if (this.IsexceptNull()) {
return false;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'LineCode\' 테이블의 \'except\' 열의 값이 DBNull입니다.", e);
else {
return ((bool)(this[this.tableLineCode.exceptColumn]));
}
}
set {
@@ -6658,11 +6658,11 @@ namespace FEQ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string memo {
get {
try {
return ((string)(this[this.tableLineCode.memoColumn]));
if (this.IsmemoNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'LineCode\' 테이블의 \'memo\' 열의 값이 DBNull입니다.", e);
else {
return ((string)(this[this.tableLineCode.memoColumn]));
}
}
set {
@@ -7207,15 +7207,15 @@ namespace FEQ0000.dsEQTableAdapters {
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
this._commandCollection[1].CommandText = "SELECT pdate FROM EquipmentB GROUP BY pdate ORDER BY pdate";
this._commandCollection[1].CommandText = "SELECT pdate\r\nFROM EquipmentB\r\nGROUP BY pdate\r\nORDER BY pdate DESC";
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[2].Connection = this.Connection;
this._commandCollection[2].CommandText = "SELECT pdate\r\nFROM EquipmentF\r\nGROUP BY pdate\r\norder by pdate";
this._commandCollection[2].CommandText = "SELECT pdate\r\nFROM EquipmentF\r\nGROUP BY pdate\r\nORDER BY pdate DESC";
this._commandCollection[2].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[3].Connection = this.Connection;
this._commandCollection[3].CommandText = "SELECT pdate\r\nFROM EquipmentME\r\nGROUP BY pdate\r\norder by pdate";
this._commandCollection[3].CommandText = "SELECT pdate\r\nFROM EquipmentME\r\nGROUP BY pdate\r\nORDER BY pdate DESC";
this._commandCollection[3].CommandType = global::System.Data.CommandType.Text;
}