How I can read .dat file and store its value in MYSQL table.

2 ビュー (過去 30 日間)
Shiza
Shiza 2012 年 4 月 25 日
回答済み: Piyush Kumar 2024 年 11 月 28 日
Hello everyone I m working on fingerprint recognition project. I have develop a code which will take fingerprint image and will perform further steps on it. At last step it will extract the minutiae and store it in a file with .dat extension. My question is that, How I can read this .dat file and store its value in MYSQL table. Thanks in advance Shiza

回答 (1 件)

Piyush Kumar
Piyush Kumar 2024 年 11 月 28 日
Hi,
You can read the ".dat" file using the fopen and textscan functions.
For example,
% Create sample data
data = {'John', 28; 'Jane', 32; 'Doe', 45};
fileID = fopen('sample.dat', 'w');
% Write data to the file
for i = 1:size(data, 1)
fprintf(fileID, '%s %d\n', data{i, 1}, data{i, 2});
end
fclose(fileID);
% Open the file for reading
fileID = fopen('sample.dat', 'r');
data = textscan(fileID, '%s %d');
fclose(fileID);
To store the values in MySQL table,
  • Connect to the database using the database function
  • Create a Table in MySQL
  • Use the sqlwrite function to insert data into the table

カテゴリ

Help Center および File ExchangeDatabase Toolbox についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by