FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

User avatar
nageswaragunupudi
Posts: 10733
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 11 times
Contact:

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by nageswaragunupudi »

Both Query() and RowSet() are two names for the same method.
We just prefer to use RowSet name. You may use the name you like to use.
Regards

G. N. Rao.
Hyderabad, India
User avatar
goosfancito
Posts: 1956
Joined: Fri Oct 07, 2005 7:08 pm

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by goosfancito »

Is there a wiki that explains how to use fwconnect so I can see what is needed for an embedded mariadb connection?

thanks
FWH 21.02
Harbour 3.2.0dev (r2104281802)
Copyright (c) 1999-2021, https://harbour.github.io/
User avatar
reinaldocrespo
Posts: 986
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL
Been thanked: 2 times

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by reinaldocrespo »

Hello group;

Is there a pdf or wiki that documents this MariaDB class? I would like something that describes the whole class without having to read each post on the forum.

And one other thing; is this an update to the TDolphin class or a whole different class altogether?

Thank you.
User avatar
vilian
Posts: 1007
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Has thanked: 3 times
Contact:

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by vilian »

Hi Reinaldo,
Some time ago I started to collect all Mr Rao tips about FWH MySql in a chm file. You can download it through the link bellow:

https://drive.google.com/file/d/1DnNBBt ... sp=sharing
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
Compuin
Posts: 1259
Joined: Tue Dec 28, 2010 1:29 pm
Location: Quebec, Canada
Has thanked: 21 times
Been thanked: 4 times
Contact:

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by Compuin »

vilian wrote: Fri Mar 21, 2025 7:03 pm Hi Reinaldo,
Some time ago I started to collect all Mr Rao tips about FWH MySql in a chm file. You can download it through the link bellow:

https://drive.google.com/file/d/1DnNBBt ... sp=sharing
Hello,

It doesn't work.

Regards
FWH 25.01 | Hbmk2 32/64 Bits (Build 19.29.30133) | Microsoft Visual C 32 Bits | MySql 8.0.24 32/64 Bits | VS Code
User avatar
vilian
Posts: 1007
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Has thanked: 3 times
Contact:

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by vilian »

Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
reinaldocrespo
Posts: 986
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL
Been thanked: 2 times

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by reinaldocrespo »

I need some help executing certain SQLs using this class. Below is the code to one such instance where the class returns an error.

Code: Select all | Expand

DELIMITER //    
CREATE FUNCTION CurrentLease( 
   pPropID CHAR( 25 ), pDate DATE 
   )  
   RETURNS CHAR( 13 ) DETERMINISTIC   
BEGIN   
   DECLARE cLease CHAR( 13 ) DEFAULT '' ;  
                              
   SELECT leaseID INTO cLease  
   FROM leases   
   WHERE propertyID = pPropID   
      AND StartDate <= pDate   
      AND ( IsMtoM OR EndDate IS NULL OR EndDate >= pDate )  
ORDER BY startdate DESC   
   LIMIT 1 ;  
  
   RETURN( cLease ) ; 
  
END //  
 DELIMITER ; 	
The sql executes fine using HeidiSQL connected to the same db and creates the function.

I have tried to execute the sql using Execute() and QueryResult() at no avail.

Can someone help?

Thank you.
User avatar
cnavarro
Posts: 6604
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Has thanked: 6 times
Been thanked: 8 times

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by cnavarro »

Mira a ver si esto te ayuda
viewtopic.php?t=33280
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
reinaldocrespo
Posts: 986
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL
Been thanked: 2 times

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by reinaldocrespo »

Querido amigo mio;

Muchas muchas gracias.

That thread helped me see the problem.

So far, everywhere I have read and even when testing scripts with HeidiSQL, I must use the clase "DELIMITER" to change the standard delimiter from ; to something else, like //. That way a ; does not ends the script. This is stupid to me, but it is a MySQL rule non the less; as per all documentation I have read.

However, with the fw client being used for MariaDB (and I suspect MySQL), the clause "DELIMITER" causes a syntax error. That was all the problem.

I realized this when reading your reference thread where Mr. Rao shows a script that creates a function and he is not using the clause "DELIMITER'.

This brings me to the question... why? I would expect there is a standard.

Well, what really matters to me is that is a problem solved and thank you very much Cristobal.
User avatar
cnavarro
Posts: 6604
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Has thanked: 6 times
Been thanked: 8 times

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Post by cnavarro »

Dear Reinaldo, thanks
This is one of the most valuable posts on this forum.
The explanation is wonderful, but above all, Mr. Rao's implementation of STORE PROCEDURES (and use of CALL) in his fabulous class developed for MySQL/MariaDB is magnificent.
The differences between the standard and Fivewin's implementation lie in the development Mr. Rao did in his class, as always, to try to make it easier for users.
Best regards and a hug.
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Post Reply