8
votes
1answer
123 views

Can Haskell Data Declarations Be Bounded By Type Values

In Haskell, is there a way to limit a data type by the value of its components? I've drafted an example. Say you have a checkers game. A checker is either of the Black or White type. data ...
0
votes
2answers
59 views

Validate float data type python

I'm coding a simple calculator in Python for my final project and I am having trouble validating the user's entered value is a float data type. I want to make it so that if the value is a string type, ...
3
votes
3answers
88 views

Haskell type of specific data constructor

Suppose I have the following Haskell code: data Option = Help | Opt1 Int Double String -- more options would be here in a real case handleOption :: Option -> IO () handleOption option ...
2
votes
3answers
109 views

How to store pairs in Java?

I'm writting a small API program in Java, that will validate IP addresses. In the simplest iteration (1.2.3.4)I just call a library like googles guava and get a true or false. The problem I have is ...
0
votes
1answer
36 views

What is the best data type to store youtube id database?

What is the best data type to store youtube id database? p.s. youtube code(id) got 11 symbols.
3
votes
5answers
76 views

storing and printing integer values greater than 2^64

I am trying to write a program for finding mersenne prime numbers. Using the unsigned long long type I was able to determine the value of the 9th mersenne prime, which is (2^61)-1. For larger values i ...
-2
votes
2answers
35 views

What Collection/List to use

I've got Treasure objects in a TreasureCollectionDB class. The TreasureCollectionDB class has a Map<Long, Treasure> (long being an id generated by the TreasureCollectionDB) called treasures ...
0
votes
1answer
63 views

Creating a SQL view that contains columns which have different data types

I am trying to create a SQL view which contains columns from different tables; the columns are different data types. For example; I have table a with a column that contains usernames. The data type ...
2
votes
4answers
190 views

How to Handle Data Type Mismatch Exception in C

I have a small question. Is it possible to handle data type mismatch exceptions in C? In C++ and other higher-level languages, the code is usually surrounded by try...catch. However, since there is ...
0
votes
1answer
181 views

“Data type mismatch in criteria expression.” Error

I get a "Data type mismatch in criteria expression." error when running this code on one database but it works perfectly fine on another database. When trying to copy the relevent table to other ...
-1
votes
1answer
123 views

defining new data type in ocaml [closed]

Can anyone please explain me how we can define new data types in Ocaml and I am completely new to ocaml. Say , I have to define a new type bitseq, which is say all binary numbers. So, what i did for ...
0
votes
2answers
70 views

Data type for a HTML Page in JAVA

Which Data type should be used to store an HTML Page in JAVA?
0
votes
1answer
256 views

Android service AIDL data types

I have a Service in a system app. I would like client apps without system permissions to be able to call functions in the Service to do things that does require system permissions. Since the Service ...
2
votes
1answer
77 views

Cannot work with integers in Verilog

For the last two hours I've been trying to figure out why I'm getting "invalid module instantiation" when using: integer counter = 0; counter = 1; // <-- getting the error here I'm getting the ...
0
votes
3answers
107 views

Using a binary tree type

I have this type declaration, representing a binary tree: data Bst a = Empty | Node (Bst a) a (Bst a) As I'm new to Haskell, I can't figure how to use it. Could you show me how to initialize some ...
-2
votes
3answers
244 views

Simplest way to store different data type values from a query

The simplest way to store different data type got from a database ONE result query. For example: "select ID, name, birth_date, age from Vecinos where lastname = 'Tupac Yupanqui'" Store each data ...
1
vote
2answers
111 views

Use custom data type to define new data type in haskell

I was wondering if it is possible to do something like this in Haskell data Word = Det String | Adj String | Noun String | Verb String | Adverb String data NounPhrase = Noun | Det Noun If I'm going ...
0
votes
2answers
48 views

if statement with a void method

Is it possible to make a boolean if statement, that says if(a method that has a void data type) = true { then do the following? or would the method need to be a boolean as well?
1
vote
2answers
146 views

Simple C data types [duplicate]

Possible Duplicate: The difference of int8_t, int_least8_t and int_fast8_t? I'm a quite confused. I think... (correct me if I'm wrong) u_int8_t = unsigned short ? u_int16_t = unsigned int ...
2
votes
4answers
364 views

C# decimal data type is stripping trailing zero's when they are needed to display

I'm still new at C#. A web app I'm working on (another dev wrote it) has a decimal variable that is dropping two zero's after the decimal. It does not drop the trailing 2 digits if they contain a ...
0
votes
0answers
141 views

ms access linked mysql decimal columns as text

we're in the middle of an access2mysql-backend switch for some quite oldish access 97 [old!] ERP-like apps, after which we will convert those apps to newer access versions, web apps, or else. we ...
-3
votes
1answer
92 views

Double and Float size [closed]

is there any language in which a type named double occupies less space than the type name float? Thank you !
0
votes
1answer
126 views

Store CSS color values in DB

I need to store a CSS HEX color value (#FFFFFF for example) into a mysql database. Which type of data would I use and why it would be better over using another one?
1
vote
1answer
134 views

Changing data type “Varchar” to “TimeStamp” in PostgreSQL

My data-set contains a column which includes date and time in "varchar" data-type as following: 04/23/2009 11:34:01 The data-type of the aforementioned column is varchar, I wanted to ask how I can ...
0
votes
2answers
106 views

How can I store a list or dictionary type into SQL as a single variable?

I need to use a data type like list or dictionary in a class. All of this data needs to be stored into SQL. Is it possible to use them with SQL directly or do I have to transfer them into other ...
0
votes
2answers
93 views

Java how to infer type from data coming from multiple sources

I'm developing a java server that collects data from multiple sensors. These sensors usually return the queried values as string values. In the header it's indicated the data type that the server has ...
0
votes
3answers
68 views

Interview - Size of an Integer [closed]

I just just had a phone interview and they asked me this question: "What is the size of an integer, and, what is the equation to work this out?" I had no idea (Ok, I'm a bit stupid) but it just ...
1
vote
2answers
98 views

What is the real long type range in java?

According to every reference I've ever found, the long type in java ranges from -9,223,372,036,854,775,808 to +9,223,372,036,854,775,807. I've written the following code below, public static void ...
0
votes
1answer
83 views

How do I extract data types from an XML Schema file?

I would like to analyze and extract from an XML Schema file(XSD) the Primitive Data Types contained within. i.e. <xs:element name="floatValue" type="xs:float"> <xs:element name="timeValue" ...
5
votes
1answer
122 views

Javascript argument with multiple data types allowed: good practice or not?

Many times I have seen - especially in jQuery - that a function can have multiple valid data types, let's say either a string or a function. Also, in my own code I sometimes have functions which can ...
0
votes
0answers
12 views

Why handle types manually? [duplicate]

Possible Duplicate: Why woulda programming languange need such way to declare variables? Why programming languages require from programmer to handle types of variables/data manually? What ...
1
vote
1answer
818 views

SQL Select including Data type and Data values

How could I select data from a table and include the data type with the values? For example, I have table called EMPLOYEE with fname, lastname, phone, etc. If I do SELECT * FROM EMPLOYEE I get all the ...
1
vote
2answers
208 views

Convert 2e+08 to integer in Java

I'd like to know what the 2e+08 format in programming means? I have some data related to project budget. How to convert it into integer in Java ?
1
vote
1answer
184 views

Having Numeric data type and character data type in the same column of a data frame?

I have a large data frame (570 rows by 200000 columns) in R. For those of you that are familiar with PLINK, I am trying to create a PED file for a GWAS analysis. Plink requires that each missing ...
0
votes
1answer
69 views

Determining the data type of a string value in Oracle

Ok...this is what I've got. There's an Oracle database table that has a column which is a VARCHAR data type. This column, call it 'value', contains strings that represent different values for ...
1
vote
3answers
266 views

MySQL very long number data type

Which data type should I use to store a number(ID) like "10196385171799537224"(21 digits) in MySQL database?
2
votes
1answer
1k views

What MySQL data type should be used for Latitude/Longitude with 8 decimal places?

I'm working with map data, and the Latitude/Longitude extends to 8 decimal places. For example: Latitude 40.71727401 Longitude -74.00898606 I saw in the Google document: ...
-1
votes
1answer
23 views

How these factors affect the sorting of a list of numbers?

Factors are: Range of numbers, data type to be sorted, uniqueness of numbers
1
vote
3answers
323 views

Trying to put too much data into mysql TEXT data type

OK... Let's say that I have a html form (actually I have an editor - TinyMCE) which through PHP inserts a bunch of text into Mysql table. I want to know the following: If I have TINYTEXT data type ...
-6
votes
1answer
87 views

what type of data is the '/' and '*' symbol

Hey im making some code which will read in a formula and will print out a variable according to the formula.... So i was wondering what type of data '*' and '/' is? heres an example of what i want to ...
1
vote
2answers
114 views

vertex data type in Graphchi

Can we make string as the vertex data type; it is mentioned that we cannot use dynamic data type but suppose I want to keep on adding some data to the vertex how shall I do? I was thinking of using ...
2
votes
1answer
687 views

Mysql truncates concatenated result of a GROUP_CONCAT Functon

I've created a view which uses GROUP_CONCAT to concatenate results from a query on products column with data type of 'varchar(7) utf8_general_ci' in a column named concat_products. The problem is ...
0
votes
1answer
135 views

PHP mssql_fetch_array and get database data type

I have a category Table: categoryId: int categoryName: string I retrieved my data from Database using: while($rows[] = mysql_fetch_array($result,MSSQL_ASSOC)){} And I want to display the result ...
-2
votes
7answers
728 views

Why are data type sizes in Java and C++ different? [closed]

For instance, real number in Java takes 8 byte while it only takes 4 byte in C++. Similarly, for character, Java takes 2 bytes, but C++ takes only 1 byte. Why are they of different size?
1
vote
6answers
99 views

Why is the output wrong?

#include<stdio.h> main() { unsigned x=1; signed char y=-1; clrscr(); if(x>y) printf("x>y"); else printf("x<=y"); } A signed character has ...
7
votes
4answers
373 views

C - Programming Data Types

I am trying to learn C and have come up with the following small program. #include "stdafx.h" void main() { double height = 0; double weight = 0; double bmi = 0; printf("Please ...
1
vote
4answers
129 views

How to let compiler examine data type manually without C++11

void f(string str,int i ) { cout<<str.c_str()<<endl; cout<<i<<endl; } typedef void (*PF)(int i,string str); int _tmain(int argc, _TCHAR* argv[]) { PF ...
0
votes
2answers
572 views

PowerBuilder problems with long, longlong, integers, dec, and decimal datatypes

I am having problems with long, longlong, integers, dec, and decimal datatypes in PowerBuilder 12.5 Classic... i did something like this and is giving me problems of datatypes; // set variables for ...
4
votes
2answers
647 views

ARM cortex-M3 uint_fast32_t vs uint32_t

I am developing a program for an STM32Fx cortex-M3 series processor. In stdint.h the following are defined: typedef unsigned int uint_fast32_t; typedef uint32_t uint_least32_t; typedef unsigned long ...
2
votes
2answers
432 views

error: two or more data types in declaration of function?

My first day learning C++. So there will probably be better ways of doing this. My plan was to make a simple addition calculator, and move on from there. Remember, this is my first day coding. ...

1 2 3