Search found 66 matches: ordcreate

Return to advanced search

strange error on index with ftp

I have a strange error making index with dbf and ftp on main.prg I set REQUEST DBFCDX REQUEST DBFFPT EXTERNAL ORDKEYNO,ORDKEYCOUNT,ORDCREATE,ORDKEYGOTO FUNCTION Main() PUBLIC oApp RddSetDefault( "DBFCDX" ) SetHandleCount( 100 ) SET DATE FORMAT "dd-mm-yyyy" SET DELETED ...
by Silvio.Falconi
Thu Mar 22, 2018 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error on index with ftp
Replies: 5
Views: 832

Re: A question about function FW_Cdxcreate()

Indexing 7 DBF's FW_CdxCreate() // WORKS !!! I tested index by index ALL numerics ( red ) don*t work ! //ORDCREATE( ,"TOPICNO", "DESCEND( STR( TOPICNO ) )", ; // {|| DESCEND(STR( TOPICNO ) ) } , .F. ) //ORDCREATE( ,"FORUM","STR( FORUM )", ...
by ukoenig
Mon Feb 26, 2018 8:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question about function FW_Cdxcreate()
Replies: 8
Views: 1670

TDatabase FWH 17.08 : Datas and Methods

... aFields, bFor, bWhile, nNext, nRec, cRdd, cCp ) Executes COPY TO command 19. CreateIndex( cFile, cTag, cKey, bKey, lUnique) ( ::nArea )->( OrdCreate( cFile, cTag, cKey, bKey, lUnique ) ) 20. DbCreate( aStruct ) DbCreate( ::cFile, aStruct, ::cDriver ) 21. Deactivate() Closes Alias 22. Delete() ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1785

A problem xBrowse seek < numeric + character >

... because it is a GROUP-number. DOESN't work ! wrong results typing < 1 > shows 100 and next 150 The seek works with < SPACE + 1 + 5 > ORDCREATE( ,"LEISTG1","STR(Klasse0) + Leistung", ; // N 3.0 + C 15 {|| STR(Klasse0) + Leistung } , .F. ) http://www.pflegeplus.com/IMAGES/Seek12.jpg ...
by ukoenig
Tue Jun 06, 2017 1:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem xBrowse seek < numeric + character >
Replies: 1
Views: 446

Re: Nuevo ADORDD

(Google translator) Nueva versión de AdoRdd 1.070317 en https://github.com/AHFERREIRA/adordd.git Mejoras y errores corregidos: ADO_ORDCREATE después de crear el índice no lo estaba abriendo. ADO_SEEK clave con varios campos con softseek en iba a eof en lugar de última clave. ADOFILE si la conexión n...
by AHF
Tue Mar 07, 2017 9:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16618

Re: ADO RDD xHarbour

New AdoRdd Version 1.070317 at https://github.com/AHFERREIRA/adordd.git Improvements and corrected bugs: ADO_ORDCREATE after creating index wasnt opening it. ADO_SEEK key with multiple fields with softseek on was going to eof instead of last key. ADOFILE if connection not valid returns now .F. inste...
by AHF
Tue Mar 07, 2017 9:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447022

A problem xBrowse seek on DATE and NUMERIC ?

... DATE the colums are sorted but the seek doesn't work. ( I can include this test for DOWNLOAD if needed ) The tested INDEX-builds : USE CUSTOMER ORDCREATE( ,"CUST1","UPPER(FIRST)", {|| UPPER(FIRST) } , .F. ) ORDCREATE( ,"CUST2","UPPER(LAST)", {|| UPPER(LAST) ...
by ukoenig
Mon Jan 16, 2017 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem xBrowse seek on DATE and NUMERIC ?
Replies: 6
Views: 2405

Re: lSeekBar

In my test I used DBSELECTAREA("KKASSE") 1. Index ORDCREATE( ,"KASSE1","UPPER(KASS1)", {|| UPPER(KASS1) } , .F. ) 2. Index ORDCREATE( ,"KASSE2","KENNER", {|| KENNER } , .F. ) The browser DBSELECTAREA( "KKASSE" ...
by ukoenig
Sat Dec 31, 2016 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: lSeekBar
Replies: 16
Views: 7107

Re: Maybe OT: OrdCreate with Unique Clausule

I have to check my source carefully because in an example that would send to your..... it worked :shock: , then the problem is not the function the problem is me lol :D

Thanks so much!
by hidroxid
Thu Apr 28, 2016 11:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Maybe OT: OrdCreate with Unique Clausule
Replies: 3
Views: 590

Re: Maybe OT: OrdCreate with Unique Clausule

... it in some complicated situations a sample The index : cUnique := cRMonat + "P" // cRmonat can be January - Dezember 12 different DBF ORDCREATE( ,cUnique, "UPPER(PAT_NNAME + PAT_VNAME)", ; {|| UPPER(PAT_NNAME + PAT_VNAME) } , .T. ) // .T. = UNIQUE ORDCREATE( ,cRMonat, "UPPER(PAT_NNAME ...
by ukoenig
Thu Apr 28, 2016 8:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Maybe OT: OrdCreate with Unique Clausule
Replies: 3
Views: 590

Re: Maybe OT: OrdCreate with Unique Clausule

I used unique indexes and they work the way they are expected to work.
I use command syntax

INDEX ON <expr> TAG <tagname> UNIQUE
by nageswaragunupudi
Thu Apr 28, 2016 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Maybe OT: OrdCreate with Unique Clausule
Replies: 3
Views: 590

Maybe OT: OrdCreate with Unique Clausule

Hi all

Any one has used OrdCreate( ... ) with the UNIQUE clausule and work as expected ?

Help say: OrdCreate(<cOrderBagName>,[<cOrderName>],<cExpKey>, <bExpKey>, [<lUnique>])

But when use with lUnique .T. nothing happens

Sorry if is Off Topic

Regards
by hidroxid
Thu Apr 28, 2016 12:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Maybe OT: OrdCreate with Unique Clausule
Replies: 3
Views: 590

xBrowse how to show 1 DBF in 2 browser with diff. indexes ?

... 1 and browser 2 are using the same index My test to split the customer.dbf in 2 browser. USE customer NEW SHARED ALIAS CUSTOMER VIA 'DBFCDX' ORDCREATE( ,"CUST1", "UPPER(LAST)", ; {|| UPPER(LAST) } , .T. ) // .T. = UNIQUE IGNORED !!! ORDCREATE( ,"CUST2", "UPPER(LAST)", ...
by ukoenig
Wed Mar 16, 2016 3:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse how to show 1 DBF in 2 browser with diff. indexes ?
Replies: 3
Views: 780

Re: Xbrowse a speed problem using SCOPE ?

... DBFCDX RDDSETDEFAULT ( "DBFCDX" ) NET_USE ( c_Pfad + "KUNDE.dbf", "KUNDE", 3, .T. ) DBSELECTAREA("KUNDE") ORDCREATE( ,"KUNDE1","UPPER(NAME1 + NAME)", ; {|| UPPER(NAME1 + NAME) } , .F. ) NET_USE ( c_Pfad + cMonat + ".dbf", "VPOS12", ...
by ukoenig
Tue Mar 01, 2016 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9078

Re: A problem xBrowse and RELATION of 2 DBF's

... http://www.pflegeplus.com/IMAGES/Relation2.jpg USE customer1 NEW SHARED ALIAS CUST1 VIA 'DBFCDX' ORDCREATE( ,"CUST1", "UPPER(LAST)", ; {|| UPPER(LAST) } , .F. ) ORDCREATE( ,"CUST2", "UPPER(LAST)", ; {|| UPPER(LAST) ...
by ukoenig
Fri Nov 27, 2015 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem xBrowse and RELATION of 2 DBF's
Replies: 5
Views: 1297
PreviousNext

Return to advanced search