Visit the New Harbour MiniGUI tutorial
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 all files.descargar el archivo comprimido work.rar y extraer todos los archivos.
Third Step: Tercer Paso...
text mode:
Compile example00.prg file like this:Compilar el archivo example00.prg asi:c:\work>harbour example00.prgc:\work>hbmk2 example00
or ....
gtwvg mode:
Compile example01.prg file like this:Compilar el archivo example01.prg asi:c:\work>harbour example01.prgc:\work>hbmk2 example01 -l gtwvg.hbc
Onde faço download de uma versão Harbour compátivel com esse exemplo?
ResponderEliminarGracias! :^)