I have a Table:
Code: Select all
CREATE TABLE [dbo].[LipidCoord](
	[LipidCoord] [int] IDENTITY(1,1) NOT NULL,
	[LipidID] [int] NOT NULL,
	[LipidX] [numeric](15, 8) NOT NULL,
	[LipidY] [numeric](15, 8) NOT NULL,
 CONSTRAINT [PK_LipidCoord] PRIMARY KEY CLUSTERED 
(
	[LipidCoord] ASC,
	[LipidID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 80) ON [PRIMARY]
) ON [PRIMARY]Code: Select all
INSERT INTO dbo.LipidCoord (LipidID, LipidX, LipidY)
VALUES(:pLipidID, :pLipidX, :pLipidY)but I am getting an "Unspecified Error" in the PutData when I call the PutColumnData for the second row.
Code: Select all
  for Idx := 1 to FLines.Count-13 do        //Skips header
  begin
    Sender.PutColumnData(0,Idx,Null);
    Sender.PutColumnData(1,Idx,FLipidID);
    DataLine.DelimitedText := FLines[Idx+12];
    X := StrToFloatDef(DataLine[0],-1);
    Y := StrToFloatDef(DataLine[1],-1);
    Sender.PutColumnData(2,Idx,X);
    Sender.PutColumnData(3,Idx,Y);
  end;