Search found 55 matches: duplicates

Return to advanced search

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

... we can use METHODS InsertSQL(), ReplaceSQL(). Insert() method is very efficient and can handle multiple row inserts as well as update on duplicates. Even experts should find these methods very useful. TRANSACTION SUPPORT // ADO CompatibilityMETHOD BeginTrans          INLINE ::BeginTransaction()METHOD ...
by nageswaragunupudi
Tue Oct 04, 2016 4:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28569

Re: DBF to SQL converter program

... were NOT guaranteed to be unique. As I understand it, they just have a very low probability of collision. Isn't that why you have to check for duplicates before you use them? And I don't really understand what the advantage of a GUID is over a sequential number? I'm sure there is one, I just ...
by James Bott
Tue Aug 25, 2015 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 18133

Re: FiveTouch FAQ

... key and it works only rarely. I try typing into prg and it either doesn't type anything or it types 1 character and then the next letter I type it duplicates the previous letter and duplicates letter I just pressed. This is on more than 1 phone. That makes it very hard to change any code on phone. ...
by Gale FORd
Wed Jun 17, 2015 1:35 pm
 
Forum: FiveTouch
Topic: FiveTouch FAQ
Replies: 54
Views: 20272

Re: OT: //Build 2015 //

I am having major problems building anything with the build 2 update, whether i try to use it with 2013 or 2015 RC. Lots of duplicates and various issues, all similar to what we dealt with previously when moving to 2013, I have neither the time nor the will to work through them right ...
by rhlawek
Tue May 05, 2015 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: //Build 2015 //
Replies: 40
Views: 9002

Re: (Off Topic) Consulta SQL

Mr Leandro Reason for getting duplicates: Your SQL Statement: SELECT A.*,B.*,C.* FROM TABLA_MOVIMIENTO A LEFT JOIN TABLA_CLIENTES B ON A.id_cliente=B.id_cliente  LEFT JOIN TABLA_EMPRESAS C ON A.id_empresa=C.id_empresa WHERE A.tipocliente='C'  ...
by nageswaragunupudi
Wed Feb 04, 2015 8:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: (Off Topic) Consulta SQL (SOLUCIONADO)
Replies: 6
Views: 1205

Re: function to supress intermediate spaces

... adjacent duplicate characters. I took Elvira's statement to mean that he want to remove all spaces, but I admit it is not clear. Removing adjacent duplicates is a different task.
by James Bott
Thu Jan 29, 2015 2:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3486

Re: function to supress intermediate spaces

... functions of CT are highly optimized functions. Full syntax: CHARONE( [cDelete], cString ) Ex: CharOne( " *-", cStrings ) removes all duplicates of ' ', '*', '-' in one single call. Where I can find this function?
by sambomb
Thu Jan 29, 2015 12:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3486

Re: function to supress intermediate spaces

... functions of CT are highly optimized functions. Full syntax: CHARONE( [cDelete], cString ) Ex: CharOne( " *-", cStrings ) removes all duplicates of ' ', '*', '-' in one single call.
by nageswaragunupudi
Thu Jan 29, 2015 12:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3486

Re: Introducing FiveTech's fivedit

Colin,

Smart indenting already implemented :-)

James,

On preferences dialogbox new "Duplicates on functions panel" checkbox to remove duplicates :-)

https://bitbucket.org/fivetech/fivewin-contributions/downloads/fivedit.zip
by Antonio Linares
Sat Jan 24, 2015 9:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 560
Views: 108068

Re: FiveDBU translation using FWH strings API

André,

thanks! :-)

For other contributors, please use this order:

{ ENGLISH, SPANISH, FRENCH, GERMAN, PORTUGUESE, ITALIAN },;

Duplicates are not intented but they will not break our app (this is good from FWH strings API), anyhow lets remove them :-)
by Antonio Linares
Thu Aug 22, 2013 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveDBU translation using FWH strings API
Replies: 4
Views: 1255

Re: Record Lock problem

... that just adds new records to the customer file. Then run two or more copies of this program across the LAN for a few minutes, then check for duplicates. James Thanks James. In my pc with 2 copies of my program runs ok, not duplicated but the case occurs in my customer with windows xp and ...
by Wanderson
Tue Aug 13, 2013 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Record Lock problem
Replies: 14
Views: 3814

Re: Record Lock problem

Wanderson,

May I also suggest writing a small sample program that just adds new records to the customer file. Then run two or more copies of this program across the LAN for a few minutes, then check for duplicates.

James
by James Bott
Mon Aug 12, 2013 2:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Record Lock problem
Replies: 14
Views: 3814

Re: Record Lock problem

... had a corrupted file cause a problem with this method. GO BOTTOM did not actually go to the bottom but to the middle and I ended up with lots of duplicates. I have been using a separate file with just one last used ID field (as Wanderson is doing) for many years without any problems. James
by James Bott
Thu Aug 08, 2013 9:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Record Lock problem
Replies: 14
Views: 3814

Re: Record Lock problem

... (your sample code does not show the field CODIGO)? I have found that you cannot use the database to keep track of the last used ID as you will get duplicates due to index problems (corruption, not the current index, etc). I use a separate database to keep track of the last used ID. James Hi Jame, ...
by Wanderson
Thu Aug 08, 2013 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Record Lock problem
Replies: 14
Views: 3814

Re: Record Lock problem

... (your sample code does not show the field CODIGO)? I have found that you cannot use the database to keep track of the last used ID as you will get duplicates due to index problems (corruption, not the current index, etc). I use a separate database to keep track of the last used ID. James
by James Bott
Thu Aug 08, 2013 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Record Lock problem
Replies: 14
Views: 3814
PreviousNext

Return to advanced search