inserting values in MySQL database using matlab

3 views (last 30 days)
%# JDBC connector path
javaaddpath('C:\Program Files (x86)\MySQL\MySQL Connector J\mysql-connector-java-5.1.28-bin.jar')
%# connection parameteres
host = 'localhost'; %MySQL hostname
user = 'root'; %MySQL username
password = 'root';%MySQL password
dbName = 'liptrackingdb'; %MySQL database name
%# JDBC parameters
jdbcString = sprintf('jdbc:mysql://%s/%s', host, dbName);
jdbcDriver = 'com.mysql.jdbc.Driver';
conn = database(dbName, user , password, jdbcDriver, jdbcString);
if isconnection(conn)
qry = sprintf('INSERT INTO lipcountor(top,bottom,left,right) VALUES(%.3f,%.3f,%.3f,%.3f);',distAa,distBa,distCa,distDa);
display(qry);
fetch(exec(conn, qry));
else
display('MySql Connection Error');
end
the matlab console also display the value correctly
qry =INSERT INTO lipcountor(top,bottom,left,right) VALUES(25.000,24.000,30.000,36.000);
but the value is not inserted in the database there is not even error.help
I have also tried
fastinsert(conn, 'productTable', {'top','bottom','left','right'}, {distAa,distBa,distCa,distDa});
were error arries
Error using database/fastinsert (line 155)
You have an error in your SQL syntax; check the manual that corresponds to your MySQL
server version for the right syntax to use near 'right from productTable LIMIT 0' at line
1
Error in GUI>pbfacedetection_Callback (line 673)
fastinsert(conn, 'productTable', {'top','bottom','left','right'},
{distAa,distBa,distCa,distDa});

Accepted Answer

Anandakumar Selvaraj
Anandakumar Selvaraj on 8 Feb 2014
I resolved the problem my self ...The thing is i have used some sort of key word in the database creation left,right,top,bottom so it is so value is not inserted also no error where there should be error saying these are keyword or some other ..it took for ever for me to find out..

More Answers (0)

Community Treasure Hunt

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

Start Hunting!