[database fast/insert] If exdata a struct, values must be scalars?

조회 수: 1 (최근 30일)
Hi! I appear to have run into an, as near as I can tell, undocumented "feature" of the Database Toolbox fastinsert and insert functions: if the exdata argument--containing the data one wants to insert--is a struct, then the values have to have size==[1, 1]? Here's all the help says about exdata being a struct: "If exdata is a structure, field names in the structure must exactly match colnames"; I don't see any Examples where exdata is a struct. When I try to fast/insert a struct like struct('a', {'F'}, 'b', [5]) it works fine, but if I change it to struct('a', {'F', 'G'}, 'b', [5 6]), I get a "Too many input arguments" error; this is true regardless of the arrangement (i.e., horizontal or vertical) of the arrays, and regardless of the kind (i.e., "regular" or cell) of the latter array (obviously, in order for 'F' & 'G' to remain distinct, their contianing array must be of the cell variety). My question is, am I doing something wrong (fast/insert appear to support arrays for exdata as long as they're not contained w/in a struct), or is this indeed a "feature" of using a struct for exdata w/ the fast/insert functions? Thanks!
  댓글 수: 2
Oleg Komarov
Oleg Komarov 2012년 1월 6일
Please post the full syntax you used and the full error message.
David Goldsmith
David Goldsmith 2012년 1월 6일
insert(conn, tablename, {'a', 'b'}, struct('a', {'F', 'G'}, 'b', [5 6]))
Error using size
Too many input arguments.
Error in database/insert (line 61)
numberOfRows = size(data.(sflds{1}),1);
Error in Insert_dev/tryInsert (line 297)
insert(conn, tablename, {'a', 'b'}, struct('a',{'F', 'G'}, 'b', [5 6]))
Error in Insert_dev/submitStatement (line 257)
success = obj.tryInsert(@insert);

댓글을 달려면 로그인하십시오.

채택된 답변

David Hruska
David Hruska 2012년 1월 9일
Database Toolbox's insert and fastinsert should work with structures containing multiple rows. I think the issue is in this statement:
struct('a', {'F', 'G'}, 'b', [5 6])
This creates a 1x2 array of structures, rather than a scalar structure whose fields contain vectors of data. I believe the following should do the trick:
insert(conn, tablename, {'a', 'b'}, struct('a', {{'F'; 'G'}}, 'b', {[5; 6]}))
Please see the documentation for struct for details: http://www.mathworks.com/help/techdoc/ref/struct.html
  댓글 수: 1
David Goldsmith
David Goldsmith 2012년 1월 9일
Yeah, I figured this out--again (I forgot that I had had this same problem--and had figured out the same solution--previously). What a PITA API! God I wish I could use Python for what I'm doing! :(

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by