Top "Field" questions

In computer science a field is a smaller piece of data from a larger collection.

How to avoid sending input fields which are hidden by display:none to a server?

Imagine you have a form where you switch visibility of several fields. And if the field is not displayed you …

html http field
Printing only the first field in a string

I have a date as 12/12/2013 14:32 I want to convert it into only 12/12/2013. The string can be 1/1/2013 12:32 or 1/10/2013 23:41 I need only …

unix sed awk field cut
Informix SQL - List all fields & tables

Informix iSQL has a command "info tables;" that shows all tables. The syntax for viewing the fields and their respective …

sql field informix isql
Difference between Property and Field in C# 3.0+

I realize that it seems to be a duplicate of What is the difference between a Field and a Property …

c# properties c#-3.0 field automatic-properties
Get name of a field

Is it possible in Java to get a name of field in string from the actual field? like: public class …

java reflection field
Java reflection get all private fields

I wonder is there a way to get all private fields of some class in java and their type. For …

java reflection field private
Get distinct values of Queryset by field

I've got this model: class Visit(models.Model): timestamp = models.DateTimeField(editable=False) ip_address = models.IPAddressField(editable=False) If …

django field distinct django-queryset
Searching for value of any field in MongoDB without explicitly naming it

I looked through the MongoDB documentation and googled this question but couldn't really find a suitable answer. So, here is …

search mongodb field
IP address storing in MySQL database using PHP

what is the right field type for IP address in mysql? and what is the right way of storing it …

php mysql database ip field
Public Fields versus Automatic Properties

We're often told we should protect encapsulation by making getter and setter methods (properties in C#) for class fields, instead …

c# class properties field automatic-properties