0
votes
1answer
24 views

How to store 3 decimal places with MySQL

I have a field in my database table, type of: double How can I store a value like this: 0,001 in it? I've already tried, but it's truncated into 0,00.
1
vote
3answers
40 views

php foreach is outputting everything twice

everything works fine, but the output is being listed twice. so it echos out: 'output a' 'output a' 'output b' 'output b' 'output c' 'output c' and so on. when i do a mysql query in phpmyadmin, ...
-1
votes
2answers
84 views

MySql Decimal Datatype : not Inserting Proper Value

Short Version I am trying to insert Decimal value but after insertion it is storing 99.999999 for all Decimal values. I am using MySql 5.5.16. Long Version I am trying to create a table with schema ...
0
votes
2answers
107 views

single and double quotes in sql insert

I had an issue come up when working with mySQL. I have a table of parts with part numbers and descriptions. I am trying to insert over a thousand parts and need to get the formatting to work for every ...
3
votes
3answers
215 views

String “0.080” to double makes 80.00 [duplicate]

I have this problem in c#, I want to convert a string to double. textBoxKostOnderhoud.Text = "0.08"; kost.OnderhoudKost = double.Parse(textBoxKostOnderhoud.Text); This makes 80.00 in my database ...
0
votes
2answers
80 views

Precision lost when storing CLLocationDegrees in MySQL

I'm working on a little app that stores Placemarks specified by iOS devices, into a MySQL backend. When a device saves a new Placemark, it is INSERTed into the DB and the newly generated ID is sent ...
0
votes
0answers
61 views

Why does Mysql change a double to a blob when you concatenate it?

In class we were working on example problems and I tried to run the following code SELECT COUNT(CUS_CODE) as "Number of Customers", concat('$',MIN(CUS_BALANCE)) as "Minimum Customer Balance", ...
1
vote
2answers
329 views

C#, problems with getting double values from MySQL database

I have a MySQL database with the table "Products". A column in "Products" is called "Price" and has the datatype "double". I need to retrieve the values from that column, so I create a reader, etc.: ...
-1
votes
1answer
231 views

multiple for from double value combobox PHP

i tried to getting and saving double values from combobox to the database. But i couldn't do it. this is my combobox. <select name="answers[]" id="answers"> <option value="<?PHP echo ...
0
votes
2answers
133 views

Should I use double type to save coordinates in mysql DB? [duplicate]

Possible Duplicate: What is the ideal data type to use when storing latitude / longitudes in a MySQL database? I have GPS coordinates and some service provider's converted map coordinates ...
0
votes
1answer
40 views

Fetching a result twice with deferend name

I have 1 table with tasks named opentask:columns: id,title,description,expires,creator_id,creator_name, executer_id, executer_name, priority_id, status_id1 table with users named user: with columns: ...
0
votes
1answer
65 views

mysql is inserting doublepost

I have a problem with mysql inserting. When the button is clicked, mysql insert is making a doublepost. I can't find the problem. Why is it doubleposting? code here http://pastebin.com/z1xx3fjt And ...
0
votes
0answers
240 views

Is it possible to cast a DECIMAL to DOUBLE in MySQL?

I know all the numerical implications, that is, the possible rounding issues inherent to floating point formats, but in my case I have DECIMAL columns in MySQL that I want to convert to DOUBLE ...
0
votes
2answers
215 views

mysql DOUBLE with thousands seperator

Is there any way to convert string to DOUBLE format when inserting new record, I want to strip it out or ignore if it exists in value when do insert in database. INSERT INTO table1 (measure) VALUES ...
0
votes
1answer
49 views

Double Subquery=Unknown Field?

I'm currently doing some heavy lifting with analying Data and creating Statistics from them. I'm trying to combine SUM, COUNT and GROUP in Subquery/parent Structure, but somehow mysql can't find one ...
0
votes
1answer
155 views

C# double type math operation probem [duplicate]

Possible Duplicate: problem in comparing double values in C# Double variable keeping wrong value I'm storing some values in a table in the MySQL database, the column type is double(8,2). ...
1
vote
4answers
2k views

How to display two decimals in MYSQL/PHP?

I'd like to display £2.00 instead of £2 or £3.50 instead of £3.5. These number let's say 'price' is defined as DOUBLE in a MySQL database. How can I force MySQL or PHP to display the two decimals? ...
0
votes
2answers
1k views

Changing Column in MySQL from int to double?

Basically, I currently have a column in a MySQL table, which is an int. I'd like to change that to double. I've searched the web, but all it came up with was conversion upon getting the values from ...
1
vote
4answers
2k views

MySQL won't insert double values

I have a MySQL database, and I insert rows to a table from a Java class. Everything worked fine, but today, I cannot insert double values. Instead of the values, 0 is being inserted. This is my code ...
0
votes
2answers
1k views

#1064 mysql error - DOUBLE NOT NULL

I'm trying to create an sql table called 'cartable'. I'm currently using phpmyadmin via MAMP(Mac Version of WAMP). When I click on the save button this error appears: SQL query: CREATE TABLE ...
0
votes
5answers
688 views

Mysql select double constant

This is not allowed in Mysql: SELECT CAST(0 as DOUBLE) as ZERO How do I do it?
0
votes
1answer
291 views

MYSQL Truncated incorrect DOUBLE value while updating

Here is request for mysql database. "UPDATE client_storrage SET LastMatched=UTC_TIMESTAMP() WHERE XUID=01100000000000" It gives error Truncated incorrect DOUBLE value: '01100000000000' XUID ...
4
votes
2answers
431 views

Why doesn't this sql query return any results comparing floating point numbers?

I have this in a mysql table: id and bolag_id are int. lat and lngitude are double. If I use the the lngitude column, no results are returned: lngitude Query: SELECT * FROM location_forslag ...
0
votes
1answer
706 views

What is the maximum precision of the double and float datatypes in MySQL

In MySQL, when you define a double or a float you define the precision like double(10,0). I also noticed you can define those types without a precision (which I assume means the maximum possible ...
1
vote
1answer
157 views

Sending Double typed data directly from C to MySQL

I am using MySQL C API. Now I have some Double Typed data in C, and I want to insert them to a database. All I know now is to use mysql_real_query() with a statement string to do this. I am worrying ...
2
votes
2answers
254 views

How to solve this double encoding problem?

I'm developing a website using python to preprocess request and a MySQL database to store information. All my tables are utf8 and I also use utf8 as Content-type. I have this code to establish ...
0
votes
1answer
805 views

MySQL Finding min/max values for double

The relevant MySQL documentation states that for doubles: Permissible values are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and 2.2250738585072014E-308 to 1.7976931348623157E+308. ...
0
votes
2answers
847 views

MySQL min/max for DOUBLE type

The MySQL documentation for the DOUBLE type is really opaque as to what the minimum and maximum values are. Permissible values are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and ...
14
votes
5answers
13k views

DOUBLE vs DECIMAL in MySQL

OK, so I know there are tons of articles stating I shouldn't use DOUBLE to store money on a MySQL database, or I'll end up with tricky precision bugs. The point is I am not designing a new database, I ...
1
vote
1answer
355 views

What is the best way to remove double quotes from strings set using MySQL _FETCH?

I have a php script to retrieve data from a MysQL databse following an ajax call. The data needs to be returned to the calling web page as a string representing a series of x,y values to be displayed ...
3
votes
3answers
4k views

float precision problem in mysql

Can anybody, given example below, make to me an explanation how FLOAT works in mySQL? I know that float is approximative, but really, such a difference? And there is only 9 digits, so it is not ...
0
votes
1answer
1k views

Preserving double and single quotes and escape characters when inserting in mysql

I have a problem when inserting into mysql. I have a multidimensional array in javascript that gets converted into a string in JSON format. The string looks like this for example: ...
0
votes
1answer
519 views

Saving a UNIX timestamp in MySQL as type DOUBLE?

My function call takes some input, and throws it into a database. Usually, it's integers, but today, I need it to throw in a unix timestamp. This overflew the FLOAT type, but works with type DOUBLE. ...
3
votes
2answers
3k views

How to check for null value for a double which is taken from a database

I am extracting values from a database. I am extracting a double value from a database using ResultSet rs = ....; while(...){ rs.getDouble("num"); } How do I check if the value of ...
8
votes
7answers
1k views

Storing price in PHP. What is better double or string?

I've been making "Product Object" for my app and I've been setting attributes, when suddenly I got to price attribute and stumbled upon it with question what type better to choose? I understand, that ...
3
votes
2answers
130 views

Are there any common gotchas with using decimal as opposed to double in MySQL?

A friend of mine said that they experienced oddities with using the decimal column to store money formats such as saving 1000.00 which would result in it being stored as 999.99. However I just tested ...
1
vote
1answer
357 views

Symfony 1.4 setter type double precision

I want to save a number with 14 decimal places, but symfony only saves 6. How can I control this: $loc->setSinRadLon(0.73946213661883); In the schema the column looks like: sin_rad_lon: { type: ...
-1
votes
1answer
2k views

PHP/MySQL won't update decimal field

I have this query: UPDATE table_name SET field_1 = field_1 +100, field_2 = field_2 +100, field_3 = field_3 +100 WHERE id = 1 LIMIT 1; Where Field_1 is regular integer, Field_2 is ...
0
votes
2answers
2k views

Multiple left joins, how to output in php

I have 3 tables I need to join. The contracts table is the main table, the 'jobs' and 'companies' table are extra info that can be associated to the contracts table. so, since I want all entries ...
1
vote
3answers
829 views

mysql query adding to a decimal doubles value of the addend for some reason

I am trying to add a value ($credit) to the value of a decimal (9,2 max length) field in a mysql database. The problem is that when I do this, it doubles the $credit and then adds it for some reason. ...
2
votes
2answers
976 views

problem with select Double in Hibernate

I have problem when want read object with where (double variable) this is my Code : BranchBuilding Table: @Entity @Table(name = "branchbuilding", ...
39
votes
7answers
18k views

MySQL pagination without double-querying?

I was wondering if there was a way to get the number of results from a MySQL query, and at the same time limit the results. The way pagination works (as I understand it), first I do something like ...