Got error export data from workspace into database
1 view (last 30 days)
Show older comments
How can i insert data from workspace into database?this is my code.
tableP=[0.02 0.01;0.02 0.01;0.02 0.01;0.02 0.01]; %my data
h = actxserver('DAO.DBEngine.36');
database = 'C:\Users\tV CaLeR\Documents\MATLAB\Maisarah BITD\cm1\data.mdb';
db = h.OpenDatabase(database);
tbl_names = {'data1'};
sql = ['INSERT * INTO ' char(tbl_names(1))];
rs = db.OpenRecordset(sql);
[row,col] = size(rs.GetRows(1));
rs.MoveLast;
ile_wierszy = rs.RecordCount;
rs.MoveFirst;
first=tableP(:,1)
secnd=tableP(:,2)
insert(db,'data1',first,secnd)
rs.Close;
db.Close;
i have this following error,
??? Invoke Error, Dispatch Exception:
Source: DAO.Database
Description: Syntax error in INSERT INTO statement.
Help File: jeterr40.chm
Help Context ID: 4c577e
Error in ==> Untitled at 9
rs = db.OpenRecordset(sql);
please help me..
0 Comments
Answers (2)
Oleg Komarov
on 10 Apr 2011
The correct expression for an INSERT is:
INSERT table_name
VALUES (value1, value2, ...)
or
INSERT table_name
SELECT field1, field2, ... FROM other_table
1 Comment
See Also
Categories
Find more on Database Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!