【发布时间】:2015-04-14 11:53:29
【问题描述】:
如何从 C# 将 int 对列表输入到 MySQL 存储过程?
我有一个包含 2500 个 int 对的列表,并希望将其作为输入,以便在 MySQL 中作为两列手持。 例如。我想发送输入。
List<IntPair> input = new List<IntPair>();
struct IntPair{
int a;
int b;
}
【问题讨论】:
标签: c# mysql stored-procedures