The data dictionary describes 3 tables: user, train_para, and audios. The user table stores user login information including username, passphrase, URL, train URL, and train text. The train_para table stores training paragraph IDs and text. The audios table stores audio recordings including type, URL, MFCC features, user ID, with the user ID being a foreign key linking to the user table.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
32 views2 pages
Data Dictionary
The data dictionary describes 3 tables: user, train_para, and audios. The user table stores user login information including username, passphrase, URL, train URL, and train text. The train_para table stores training paragraph IDs and text. The audios table stores audio recordings including type, URL, MFCC features, user ID, with the user ID being a foreign key linking to the user table.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
Data Dictionary
Table Name: user
Sr No 1. 1. 1. 1.
Field Name userName passphrase URL trainURL trainText
Data-Type Varchar Varchar Varchar Int
Siz e 50 25 6 25 6
Constraints Primary Key
Foreign key, references primary key of table train_para
Table Name: train_Para
Sr No 1. 2. Field Name idtrain_Para text Data-Type Int Text Size Constraints Primary Key, Auto increment
Table Name: audios
Sr. No 1. 2. 3. 4. 5. Field Name Idaudios type URL MFCC UserID Data-type Int Varchar Varchar BLOB Varchar 256 Foreign Key, references primary key of table user 45 256 Size Constraints Primary Key, Auto Increment