Visit the New Harbour MiniGUI tutorial
From the keyboard Add New Records into MySQL with Harbour Project
Añadir desde el teclado Nuevos Registros en MySQL con Harbour Project
By
Añadir desde el teclado Nuevos Registros en MySQL con Harbour Project
By
andresortizdiaz@hotmail.com
First Step: Primer Paso...
Database____ : alimentsTable_______ : fruitsProcedures (2) : create_table_fruits() andcalculate_total()
"Copy" and "Paste" the following code into MySQL, create a database (aliments) and a table (fruits) and 2 procedures (create_table_fruits () and calculate_total ())
"Copiar" y "Pegar" el siguiente codigo dentro de MySQL, para crear una base de datos (aliments) y una tabla (fruits) y 2 procedimientos (create_table_fruits() y calculate_total())
drop database aliments;show databases;use aliments;delimiter //create procedure create_table_fruits()beginname varchar(20),price double(8,2),quantity int(6),total double(8,2));end //delimiter ;call create_table_fruits();describe fruits;delimiter //create procedure calculate_total()beginupdate fruits set total=(price*quantity);end //delimiter ;
Second Step: Segundo Paso...
Download the file work.rar and extract
append_mysql.prg file.descargar el archivo comprimido work.rar y extraer el archivo append_mysql.prg.
Third Step: Tercer Paso...
Copiar el Archivo en la Carpeta c:\work
Copy the file to the folder c:\work
Fourth Step: Cuarto Paso...
Compile append_mysql.prg file like this:Compilar el archivo append_mysql.prg asi:c:\work>harbour append_mysql.prgc:\work>hbmk2 append_mysql
Fifth Step: Quinto Paso...