Questions tagged [field-names]
83 questions
1
vote
5 answers
Create new Javascript array with field names
I have a data file that I'm reading into an array. The array created by the original data file looks like this:
var originalArray = [ {vendor: 2001, bananas: 50, apples:75, oranges: 12},
{vendor: 2002, bananas: 25, apples:60,…

DG_Montana
- 63
- 1
- 2
- 4
1
vote
2 answers
How to recognize fieldnames in header row of text/csv file when importing in postgreSQL table ?
I want to import a fair number of csv files in a single postgreSQL table. The csv files differ in the number of fields they contain, but the header row contains fieldnames which correspond with those in the destination table.
Rather than specifying…

aaike
- 11
- 2
1
vote
1 answer
Hibernate Validator custom messages key with class name and field name
I've been trying to add custom messages for validation errors for a REST Service managed by Spring MVC within a @Controller class.
The Employee class:
public class Employee {
@NotNull
@NotEmpty
private String company;
...
}
My REST…

Tiago Bento
- 21
- 6
1
vote
1 answer
display fieldname in output using Filehelpers.dll
want to display fieldname in the output but i got no idea how to solve this. anybody pls help..
Test.aspx.vb
Private Sub IFexportData()
Try
Dim fileLog, filePath, fileName As String
fileLog = Year(dtDate.Text) &…

user1398000
- 91
- 1
- 1
- 3
0
votes
1 answer
How can the field name on the date card be removed?
As I prepare the current date card, the field name is also displayed, but I do not want that field name to appear on the card.
I tried to delete that field name, but I couldn't discover a way to do so. How to delete it?
0
votes
1 answer
Kotlin automatically changes parameter names in release build
Json object's field name automatically changing in release build and causing api to fail.
Data Object :
data class SleepStage(val awake:Double, val light: Double, val rem:Double, val deep:Double)
IN DEBUG MODE
SleepStage": {"awake": 0.58,"light":…

Saurabh G.
- 9
- 5
0
votes
0 answers
Run-time error '1004' The extract range has a missing or invalid field name
.Range("A2:Q" & LastRow).AdvancedFilter xlFilterCopy, CriteriaRange:=.Range("s2:s3"), CopyToRange:=.Range("AA2:AJ2"), Unique:=True
Who can help me out?
I've been trying to figure it out, but can not fix it.
This is the code:
Sub…

reinier van dijk
- 1
- 1
0
votes
1 answer
Writing a CSV with multiple variables with fieldnames python
Im very new to python so please be kind... I need to write a csv file with multiple variables and a fieldname. I found a different post:
Writing a CSV with multiple variables
But i have 0 clue how to add a fieldname. I know that it has to be…

Noah Hellyer
- 25
- 5
0
votes
0 answers
Grouping model field names in Django
I have a complex detail view where a lot of varied data is rendered dynamically. My model has hundreds of fields, many of which are related to one another. I would like to be able to group a number of these fields in order to do queries. Is there…

Danhr
- 1
- 3
0
votes
1 answer
FieldNamingStrategy with Spring Data Elasticsearch
I'm configuring an elasticsearch spring application, and following the docs i've created this RestHighLevelClient:
@Configuration
public class RestClientConfig extends AbstractElasticsearchConfiguration {
@Override
@Bean
public…

m.delloso
- 35
- 5
0
votes
0 answers
Access is changing the field name in export to csv
When I export an Access table to a .csv file, it changes the field names replacing the # with a period. For example, the field "Name#1" becomes "Name.1". The application that will be ingesting the output file requires the # instead of the period. …

sgtaz
- 1
- 1
0
votes
1 answer
How to handle spaces in filed names in a json file while creating Athena table
My Json file has field names with spaces in it like "Customer ID".The json file sits in the S3 bucket .So,when I try creating an Athena table on this json file ,it throws me error as the field names has spaces.it loads fine when the fields with…

Anoop Nair
- 35
- 7
0
votes
0 answers
SQL to Access Linked Table Field names 66characters including square brackets
Ive migrated from Access to SQL Server 2012 but when I link my table back into the Access db I have some field names that are 64characters long, which becuase they have spaces and other special characters in them encloses them in square brackets…

Crazypabs
- 1
- 1
0
votes
3 answers
How to distinguish the same field names of two Oracle tables?
I have two different table.
One table has 70 Columes, the other has 80.
I want to display all the Columes of the two tables.
But there are some Columes with the same Columes-name.
EX:
SELECT *
FROM TABLE1 A INNER JOIN
TABLE2 B ON A.ID =…

Liagnsian
- 1
- 1
0
votes
2 answers
Dynamic field name in Access query and function, can this be done?
in an access database i have created a function which compares 3 fields in my query:
Fields:
CostMacDON
CostKentFRY
CostBurgKIN
TurnMacDON
TurnKentFRY
TurnBurgKIN
CustMacDON
CustKentFRY
CustBurgKIN
Public function…

Yoko Mani
- 9
- 1