Search found 127 matches: alter

Return to advanced search

Re: MySql MariaDatase INDEX

Hi all
Thank Vilian
is also possible : oCN:Execute("ALTER TABLE your_table ADD INDEX your_index(`field1`, `My_function()`)")
by mauri.menabue
Wed Apr 19, 2023 9:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql MariaDatase INDEX
Replies: 3
Views: 306

Re: MySql MariaDatase INDEX

TO REMOVE
oCN:Execute("ALTER TABLE your_table DROP INDEX your_index")

TO CREATE
oCN:Execute("ALTER TABLE your_table ADD INDEX your_index(`field1`, `field2`)")
by vilian
Wed Apr 19, 2023 8:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql MariaDatase INDEX
Replies: 3
Views: 306

Re: Using FastReports FRH change memo2 from Memo1

... click event gets called, that is also the object for which the "modified" variable belongs to. I'm thinking one possible way would be to alter the report engine object which is something I was hoping to avoid. The other way I think it would be possible would be to write a harbour function ...
by reinaldocrespo
Sun Apr 16, 2023 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using FastReports FRH change memo2 from Memo1
Replies: 2
Views: 316

Re: SET ALTER TO cFile ?

hi,
hmpaquito wrote:? command is translated to msgbox alert in fivewin.ch
A workaround is change ? command for Qout() function

AHA ...
thx for Workaroud
by Jimmy
Tue Jul 12, 2022 7:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

Re: SET ALTER TO cFile ?

Hello Jimmy,
there is also fwlog function.

Best regards,
Otto
by Otto
Tue Jul 12, 2022 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

Re: SET ALTER TO cFile ?

Hi Jimmy,

for debugging or log I use the following:
outside the Main function a static cLog := ""
Then all debug info I append to cLog += 'interesting info' + CRLF.
At the end I call msginfo( cLog ).

May be this could work for you too.
Regards,
Detlef
by Detlef
Tue Jul 12, 2022 9:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

Re: SET ALTER TO cFile ?

Hi,

? command is translated to msgbox alert in fivewin.ch

A workaround is change ? command for Qout() function

Regards
by hmpaquito
Tue Jul 12, 2022 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

SET ALTER TO cFile ?

hi, for Debug i use   SET ALTER TO "_LOGIT2.TXT"   onDummy("Hello World")   SET ALTER TO  and Function FUNCTION onDummy()LOCAL iMax   := PCOUNT()LOCAL iLOCAL cText  := ""LOCAL xValue* ...
by Jimmy
Tue Jul 12, 2022 12:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

Re: Clase Nativa MySql

... fill gaps in auto-inc values due to deletions 2) reseed the auto-increment value to a higher value. Even for this, it is more appropriate to use ALTER TABLE command than inserting a higher value. El GetAutoIncrement(cTable) lo reemplace por una funcion propia simple: FUNCTION GetAutoIncrement(cTable,cField)RETURN ...
by nageswaragunupudi
Fri Mar 11, 2022 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase Nativa MySql
Replies: 18
Views: 1851

Re: MySql Nativa Transacciones. At. Mr. Rao

... in mysql is only for insert, update and delete statements? Yes. Only for DML statements, i.e., INSERT, UPDATE and DELETE statements Umm. Alter table.., etc. Is not supported in transaction? Yes. Not supported. One more important point to remember is that if at all we use any DDL statement ...
by nageswaragunupudi
Sat Sep 18, 2021 10:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2460

Re: MySql Nativa Transacciones. At. Mr. Rao

DATA lRaiseErrorDML INIT .f.
DATA lRaiseErrorALL INIT .f.

Ok rao.

But, transaction in mysql is only for insert, update and delete statements?

Umm. Alter table.., etc. Is not supported in transaction?
by carlos vargas
Sat Sep 18, 2021 4:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2460

GetExcelRange : Enhancement request

... : Read the first time with the function and retrieve the fieldnames. Vieuw them from a xbrowse and determent wich fields should be read as text (alter the array flag of header ?) The read a second time with the changed array and retrieve what i need. I know that changing the Exel file from digits ...
by Marc Venken
Sun Apr 18, 2021 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange : Enhancement request
Replies: 2
Views: 383

Re: Transym OCR wrapper functions for Harbour

I tried emailing the .dll to Enrico but nowadays you can't send a .dll even you alter the extension.

You can send using www.wetransfer.com.
Even exe.
by nageswaragunupudi
Tue Feb 23, 2021 9:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transym OCR wrapper functions for Harbour
Replies: 30
Views: 2745

Re: Transym OCR wrapper functions for Harbour

Hello;

I think you can download from here: https://transym.com/download/

I tried emailing the .dll to Enrico but nowadays you can't send a .dll even you alter the extension.

Let me know if download works for you.

Thank you,

Reinaldo.
by reinaldocrespo
Fri Feb 19, 2021 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transym OCR wrapper functions for Harbour
Replies: 30
Views: 2745

Re: Detectar si existe campo en tabla MySQL

... COLUMN_NAME='actaconformidad_mod' AND TABLE_NAME='formularios' " cQry := oServer:Query( cMsg ) If cQry:lastrec()=0 cMsg := "ALTER TABLE formularios " cMsg += "ADD COLUMN actaconformidad_mod VARCHAR(80) NULL AFTER actaconformidad" oServer:Execute( cMsg ) EndIf ...
by CARLOS ATUNCAR
Tue Jan 05, 2021 7:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar si existe campo en tabla MySQL
Replies: 7
Views: 716
Next

Return to advanced search