Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
simplespeech-DB.zip | 2002-10-04 | 336.9 kB | |
README.txt | 2002-10-04 | 1.7 kB | |
Totals: 2 Items | 338.6 kB | 1 |
SimpleSpeech Project by Nanang mail: boedjang_2000@yahoo.com ================================================================================= INSTALLATION and PRE-DESCRIPTION simplespeech-app-src.zip ---------- contains source code and additional files (help:*.chm, about content:*.rtf). extract it to any folder, and open it from delphi simplespeech-DB.zip --------- This application need to store and modify its data which is stored and managed by a third party database system. You actually could use any relational database system, however, in developing and testing phase, we always use MySQL, so the available SQL scripts, in the following list, are dumped from MySQL. spu_create.sql -> SQL script for creating tables needed by application spu_vq.sql -> SQL script for initializing vector quantization tables All you have to do with these scripts are: 1. make sure that your system have MySQL-ODBC driver installed, if you don't, you can download that driver from internet, it is free and easy installing. 2. create a new database in MySQL, named "simplespeech", example: > mysqladmin -u root simplespeech 3. run those scripts in mysql, you can just type the following command: > mysql -u root simplespeech < spu_create.sql > mysql -u root simplespeech < spu_vq.sql 4. create a new DSN, named "spu", in ODBC Setting, use MySQL driver, see point 1 above. The "spu" DSN should refer to MySQL, for database "simplespeech". if no problem occured in above steps, the system is ready to be compiled and run. You can report any problems or tell anything about this application (enhancement, bug, etc) please contact: boedjang_2000@yahoo.com