strSQLUpdate = "INSERT INTO DEMAND_SUPPLY_LINK " _
"(ID, DEMAND_TYPE, DEMAND_BASE_ID, DEMAND_SEQ_NO, _
SUPPLY_TYPE, SUPPLY_BASE_ID, SUPPLY_SUB_ID, _
DEMAND_PART_ID, SUPPLY_PART_ID, ALLOCATED_QTY, _
RECEIVED_QTY, ISSUED_QTY, SUPPLY_MODE, _
CREATE_DATE, USER_ID)"
Values('','')
My problem is that I have numerous columns (32) and I will like it to continue on the next line. This applies also to the Values. I'm having some problems with the insert statement. thanks.
"(ID, DEMAND_TYPE, DEMAND_BASE_ID, DEMAND_SEQ_NO, _
SUPPLY_TYPE, SUPPLY_BASE_ID, SUPPLY_SUB_ID, _
DEMAND_PART_ID, SUPPLY_PART_ID, ALLOCATED_QTY, _
RECEIVED_QTY, ISSUED_QTY, SUPPLY_MODE, _
CREATE_DATE, USER_ID)"
Values('','')
My problem is that I have numerous columns (32) and I will like it to continue on the next line. This applies also to the Values. I'm having some problems with the insert statement. thanks.