Search found 36 matches: concatenate

Return to advanced search

Re: Unicode vs UTF8

... This is what we call Wide Char. Some sample characters: https://imagizer.imageshack.com/v2/xq70/924/X5iuAK.png Now, let us concatenate all UTF8 chars (6th column) and display: 9AÜĞత Unicode system is a family of different encodings all of which are aimed at uniquely representing ...
by nageswaragunupudi
Sun Jan 07, 2024 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode vs UTF8
Replies: 2
Views: 1024

Re: Characters from different code tables

superscript characters of space or volume

Please give some examples and let us try now.
Any character can also be expressed in utf8. Then we can concatenate all utf8 characters
by nageswaragunupudi
Tue Aug 29, 2023 3:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Characters from different code tables
Replies: 5
Views: 277

Re: not ISOEM(), ISANSI() or IsUTF8()

... look exacty alike and in fact both represent the same character. But both are different. When compared, both are not equal and also we can not concatenate both the strings. Nothing to do with FW_SetUnicode() and nothing to do with any Codepage To see the point clearly, let is try this sample. ...
by nageswaragunupudi
Sun Aug 27, 2023 2:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2094

Re: JavaScript is a case-sensitive language

... ) JS: cNwName = cUsrName.toUpperCase(); To know how many chars FW: nChars := len( cUsrName ) JS: nChars = cUsrName.length; And off course you can concatenate several methods in one single line : aNames = cUsrName.toUpperCase().split(' '); I'm not saying JS is better language than FW, it has several ...
by Raymundo Islas M.
Sat Jun 26, 2021 3:34 pm
 
Forum: mod_harbour
Topic: JavaScript is a case-sensitive language
Replies: 3
Views: 578

Re: Strange MariaDB save problem.

... .t. )  4) Such large export of data should be attempted on local server. 5) Increase max_allowed_packetsize suitably and concatenate more than one update statement with ";" so that the total size of the combined sql does not exceed 80% of the max_allowed_packetsize. ...
by nageswaragunupudi
Mon Jun 22, 2020 3:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 1785

Re: Browsing a large recordset

XBrowse or some other browse is not the issue. The second sql statement results in a 2nd recordset different from the 1st recordset. You can not concatenate both recordsets. Hope you agree. Do you plan to replace the 1st record set with 2nd recordset? While browsing one of the recordsets the user ...
by nageswaragunupudi
Tue Sep 27, 2016 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Browsing a large recordset
Replies: 2
Views: 747

Re: pagers for xBrowse

... involve multiple Recordsets, opening on demand and swapping them on the basis of navigational needs. Unfortunately there is no way to append or concatenate recordsets. This adds quite a bit complexity to coding but can be done if it is really worthwhile. What we may lose in the process are sort, ...
by nageswaragunupudi
Thu May 19, 2016 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: pagers for xBrowse
Replies: 14
Views: 3867

Re: Variable substitution in MS Sql Substring() Function -solved

To All Using the same logic to concatenate in the Substring parameters as I did the nproj .. here is the working Sql Statement. Thanks Rick Lipkin nLen := len(ltrim(str(nProj)))nLen++cSQL := "Select * from Coproposal ...
by Rick Lipkin
Mon Feb 08, 2016 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Variable substitution in MS Sql Substring() Function
Replies: 6
Views: 1338

Re: ADO RDD xHarbour

James, Are you saying that SQL can concatenate unlike data values automatically? Are unlike data values always converted to string, or could you add a date + 10 and get a date ten days after the date specified? (I'm not sure why you might ...
by AHF
Thu Aug 27, 2015 2:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446316

Re: ADO RDD xHarbour

... ADO TABLES INDEX LIST TO {   {"TABLE1",{"COD1","COD+NCOD2+DCOD3"}... Are you saying that SQL can concatenate unlike data values automatically? Are unlike data values always converted to string, or could you add a date + 10 and get a date ten days ...
by James Bott
Thu Aug 27, 2015 2:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446316

Re: Concatenate two fields in one xBrowse Column

Sorry, should have been dtoc() not ctod()
by Gale FORd
Fri Jan 03, 2014 1:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2305

Re: Concatenate two fields in one xBrowse Column

Richard and Gale

Thank you both .. been a long day and I am headed home. I will let you both know in the morning ..

Happy New Year!
Rick Lipkin
by Rick Lipkin
Thu Jan 02, 2014 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2305

Re: Concatenate two fields in one xBrowse Column

Is startdate and endingdate fields a date type or character type.
You may need to convert them to character. { || ctod(startdate)+CRLF+ctod(endingdate) }
by Gale FORd
Thu Jan 02, 2014 9:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2305

Re: Concatenate two fields in one xBrowse Column

Rick Maybe the version , nevertheless you can do it in another way by calling a function in the columns definition instead of { || STARTDATE+ENDINGDATE } { || FUNC1() } .... STATIC FUNCTION FUNC1() RETURN STARTDATE + ENDINGDATE This will work as i use it since very long time, after you may format wi...
by Richard Chidiak
Thu Jan 02, 2014 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2305

Re: Concatenate two fields in one xBrowse Column

Richard Sorry about the quotes .. I re-compiled but I did not get any data with this code :( .. I am using Fwh1203 .. don't know if that has any bearing on the results. Rick Lipkin // ad run in these publications         REDEFINE xBROWSE oLbxC      ;         RECORDSET oRsAdvtBill       ;         COL...
by Rick Lipkin
Thu Jan 02, 2014 8:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2305
Next

Return to advanced search