Add new records into MySQL with harbour



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
andresortizdiaz@hotmail.com


First Step: Primer Paso...

Database____ : aliments
Table_______ : fruits
Procedures (2) : create_table_fruits()  and
                           calculate_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;
create database aliments;
show databases;
use aliments;
delimiter //
create procedure create_table_fruits()
begin
 create table fruits(
 name 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()
begin
 update 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.prg
c:\work>hbmk2 append_mysql



Fifth Step: Quinto Paso...

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




Sixth Step: Sexto Paso...


Now you must write a new record...
Ahora usted debe escribir un nuevo registro...





and...  Saved..!!!






By
andresortizdiaz@hotmail.com