Search found 40 matches: firstname

Return to advanced search

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

Question : what is 8th Element of ROW from ::aStructPG for :?: In cases of SQL like this SELECT first AS firstname, ... Column 1 shows "firstname" and column 8 shows the actual name of the field, i.e., "first" So, we need to use column 8 only for building ...
by nageswaragunupudi
Sat Aug 05, 2023 5:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 718

Re: System info, Tips & Tricks, scharing project info

... they are in the initial cdx, they will be active all the time. Is it adviced that we only make a index for the CDX for main Tags like, code, name, firstname and for all others make a temp index (even with the tmp clause) that i discovered. they will be active all the time. Whether you use a filter ...
by James Bott
Sat Jan 15, 2022 10:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1452

Re: System info, Tips & Tricks, scharing project info

... they are in the initial cdx, they will be active all the time. Is it adviced that we only make a index for the CDX for main Tags like, code, name, firstname and for all others make a temp index (even with the tmp clause) that i discovered. Except that there is one 1 call when we open the cdx over ...
by Marc Venken
Sat Jan 15, 2022 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1452

Re: check existing first and last on customer

... for that customer and the CUSTNO gets added automatically to the reservation database. CUSTOMERS.DBF FIELDS: CUSTNO (primary key, unique) FIRSTNAME LASTNAME RESERVS.DBF FIELDS: (You could have multiple reservations for the same CUSTNO) RESERVNO (primary key, unique) CUSTNO RESERVITEMS.DBF ...
by James Bott
Tue Jun 15, 2021 3:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check existing first and last on customer - RESOLVED !!!
Replies: 23
Views: 2505

Break a array appart (result of swagger request) (SOLVED)

... that there was a positive result found. {"status":200,"data":[{"customerId":1,"gender":"","firstName":"Marc","lastName":"Venken","dob":"0000-00-00","emailAddress":"marc@maveco.be","addressBookIds":"2","defaultBillingAddressId":2,"defaultDeliveryAddressId":2,"phoneNumber":"89853445","faxNumber":"","bankAccountNumber":"","subscribedToNewsletter":"0","guestAccount":1,"approved":1,"discountGroupId":0,"discountGroupName":"","groupDiscount":"0.00","numberOfLogins":1,"lastLoginDate":"2014-09-11 ...
by Marc Venken
Sat May 22, 2021 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Break a array appart (result of swagger request) (SOLVED)
Replies: 1
Views: 275

Swagger API and FWH

... "token: c5ce13c97e79b8d54ca40e75ea43c41282cb25e469c4babb8ad4400850a54624" -H "Content-Type: application/json" -d "{\"firstName\":\"Marco\"}" and Request Url : http://swagger.shoptrader.com/api/v2/customers/1?token=c5ce13c97e79b8d54ca40e75ea43c41282cb25e469c4babb8ad4400850a54624 ...
by Marc Venken
Tue Sep 22, 2020 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Swagger API and FWH
Replies: 2
Views: 867

Re: XBROWSER y exportar a Excel con Meter

... ejemplo Gracias nuevamente. USE CUSTOMER XBROWSER "CUSTOMER" COLUMNS "FIRST","LAST" SETUP oBrw:cHeaders := { "FirstName", "LastName" }
by Enrrique Vertiz
Fri Aug 09, 2019 12:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSER y exportar a Excel con Meter
Replies: 11
Views: 2364

Re: Search on customers.dbf

... the list in that order and I start typing in the info. Thus, to do a search I popup the browse, click on the company field ( remember, last name + firstname or the actual name of a company ), and start typing the first few letters. The browse moves to that position instantly. For efficiency, if ...
by TimStone
Wed Mar 20, 2019 8:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search on customers.dbf
Replies: 12
Views: 2065

Re: Compare structure of DBF on 2 locations

oCn:RenameColumn( cTable, cOldName, cNewName )
oCn:AddColumn( cTable, aColSpec )
oCn:AlterColumn( cTable, aColSpec )

aColSpec ( dbf column spec )
Eg:
{ "firstname", "C", 30, 0 }

{ "salary", "N", 10, 2 }

etc
by nageswaragunupudi
Fri Mar 08, 2019 9:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compare structure of DBF on 2 locations
Replies: 10
Views: 1349

Re: How to reference xBrowse columns

... we can omit them. Example: if the Header is "First Name", following are valid: oBrw:oCol( "FIRST name" ) oBrw:oCol( "firstname" ) oBrw:oCol:firstname. When there are duplicate names, it is safer to refer them with nCreationOrder. There can be same header name ...
by nageswaragunupudi
Wed May 23, 2018 3:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to reference xBrowse columns
Replies: 2
Views: 636

Re: Xbrowse : Check by database names or Xbrowse names

... This never fails. If the browse is something like: @ r,c XBROWSE ..... COLUMNS "FIRST", "LAST", ......... HEADERS "FirstName", "LastName", ....... Then condition like oBrw:FirstName:Value = <something> is better than oRs:First value or oRs:Fields( ...
by nageswaragunupudi
Fri Aug 11, 2017 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Check by database names or Xbrowse names
Replies: 7
Views: 1053

Re: Interfacing with Dicom sistems

... Death Indicator The make up of the patient name is in XPN format as follows: SEQ LENGTH DT OPT TBL # NAME XPN.1 194 FN O Family Name XPN.2 30 ST O FirstName Given Name XPN.3 30 ST O Second And Further Given Names Or Initials Thereof XPN.4 20 ST O Suffix (e.g., Jr Or Iii) XPN.5 20 ST O Prefix (e.g., ...
by xProgrammer
Tue May 02, 2017 9:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interfacing with Dicom sistems
Replies: 41
Views: 11780

Re: JSON Post and Get sample

... "2014-12-16T10:58:52.293529Z", "UserDetails": { "ContactID": 674, "AgentID": 184145, "FirstName": "UAT", "LastName": "APIUser", "Email": "UAT.apiuser@company.com", "JobTitle": ...
by cdmmaui
Sat Jan 07, 2017 5:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: JSON Post and Get sample
Replies: 10
Views: 4058

Re: Nuevo FWH 16.05

... This might sound odd but the real purpose is this. The sql statement creating the rowset could have used alias names for the fields, eg: FIRST AS FIRSTNAME, LAST AS LASTNAME, HIREDATE AS JGDATE, etc. The rowset displays the alias names only eg. FirstName, LastName, JgDate, etc but not the original ...
by nageswaragunupudi
Sun Jul 17, 2016 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.05
Replies: 12
Views: 3773

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

... that single tables can be edited/modified easily. In addition even the following types of queries are editable. SELECT id AS CustID, first AS FirstName, last AS SurName from customer. Though the field names used in the rowset are CustID, FirstName, SurName any modificatiosn to these fields ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28420
Next

Return to advanced search

cron