SqlServer データベースに単純なテーブルがありますsimSQLTable。列見出しは次のとおりです。
index, del_date, name
私は MATLABmytblに 1 つの行を持つテーブルを持っています:
num deldate myname
--- ------- ------
1 '07-02-2015 00:00:00.0' 'JenZ'
mycolnames = {'index', 'del_date', 'name'};
私はfastinsertこのように使用します:
fastinsert(conn, 'simSQLTable', mycolnames, mytbl);
しかし、私はこのエラーが発生します:
Error using database/fastinsert (line 90)
Variable fields and insert fields do not match.
これを解決するには?