Data from MySQL Table To Memory Variables into Harbour-Project Program







By

andresortizdiaz@hotmail.com



First Step: Primer Paso...

Database____ : company
Table_______ : products
Procedures (1) : create_table_products()
"Copy" and "Paste" the following code into MySQL, create a database (company) and a table (products) and 1 procedures: create_table_products ()

"Copiar" y "Pegar" el siguiente código dentro de  MySQL, para crear una base de datos (company) y una tabla (products) y 1 procedimiento: create_table_products()

drop database  company;
create database company;
show databases;
use company;
delimiter //
create procedure create_table_products()
begin
    create table products(
    name varchar(20),
    price double(6,2),
    sales_apr  double (6,2),
    sales_may double (6,2),
    sales_jun  double (6,2),
    tot_sales double (8,2),
    ave_sales double (6,2));
end //
delimiter ;
call create_table_products();
describe products;


Second Step: Segundo Paso...

Download the file: work4.rar and extract all files descargar el archivo comprimido work4.rar y extraer todos los archivos

Third Step: Tercer Paso...

Compile example04.prg file like this:
Compilar el archivo example04.prg asi:
c:\work>harbour example04.prg
c:\work>hbmk2 example04

Fourth Step: Cuarto Paso...

Run and enjoy ...
Ejecutar el .exe ...
c:\work>example04.exe <Press Enter>









By
andresortizdiaz@hotmail.com







1 comentario: