delphi MSSQL表类型传参
Posted 毛小毛的家
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi MSSQL表类型传参相关的知识,希望对你有一定的参考价值。
VAImpTable.Open;
VAImpTable.First;
VAImpTable.FetchAll; // Make sure we have ALL the data for the migrate
VAImpTable.First; // Just to make sure that we are back at the first record
spBatchInsert.ParamByName(\'@input_table\').DataType := ftDataSet;
spBatchInsert.ParamByName(\'@input_table\').Direction := pdInput;
spBatchInsert.ParamByName(\'@input_table\').Value := VAImpTable;
try
spBatchInsert.ExecProc;
except on e: Exception do
ShowMessage(e.Message);
end;
VAImpTable.Close;
以上是关于delphi MSSQL表类型传参的主要内容,如果未能解决你的问题,请参考以下文章