1
vote
2answers
34 views

Detect data type while using fetch_array with MySQLi

while fetching an array with MySQLI in a way such that $sql = <<<SQL SELECT * FROM `users` WHERE `live` = 1 SQL; if(!$result = $db->query($sql)){ die('There was an error ...
-5
votes
1answer
39 views

Ruby On Rails — Check boxs , Dropdowns , Radio buttons

I want to know how to set the datatype for dropdowns , checkboxes , radio buttons .. I'm using mysql as backend thanks for advance help
0
votes
2answers
40 views

Issues inserting unsigned char array into database

Here's my code. It is supposed to do 254 ARP requests and store the ip and mac addresses into an unsigned char array, and after that store them into a data base. It all seems to work perfect except ...
0
votes
0answers
42 views

mySQL int returned as int instead of string in PHP mySQL query

When I am pulling data from my table the type of the field is int and when I pull it with PHP it is staying asint. Yet on my server it is being pulled as a string (as I expect it to). Both databases ...
1
vote
1answer
31 views

MySQL: Insert float, ends up an int

I've got a float variable that I'm trying to insert into a float column in my database. The query is as follows: UPDATE users set earnings_unconfirmed = 140834.005336 WHERE username = 'test' I have ...
1
vote
1answer
47 views

MySQL datatypes for business applications?

Good day, I am confused with the datatype for MySQL. I am using decimal as apparently it is the safest bet for accuracy in a business application. However, I find that when fields are returned I have ...
0
votes
0answers
56 views

How to save HTML5 time attribute input to My SQL

Hi I have a problem with HTML5 time attribute. My code looks like this, <input type="time" name="e_time"> the sample output is looks like this [e_time] => 19:08 It gives an array in ...
1
vote
4answers
57 views

MySQL char vs. int

I'm currently having a discussion in my class about the datatypes char and int in MySQL. We have a phone number of 8 individual numbers. However, we can't find any pros and cons for each of them. ...
-2
votes
1answer
220 views

How to insert picture into MySQL database which is connected to JFrame? [closed]

how to insert picture into database with blob data type and preview it in the jframe ? i need the code for JFileChooser to insert the picture , and i need a code for the previewing the picture for ...
0
votes
1answer
52 views

MySQL: an efficient binary value comparison

My table has 8 VARCHAR fields of binary strings of 64bits each one. My goal is to get Hamming distance for each register. I was doing it with the next query : SELECT BIT_COUNT(CONV(fp.bin_str0, 2, ...
0
votes
2answers
90 views

Most space efficient way to store large integer from php to mysql?

I'm working with integers greater up to 128 bits long. They're used to store a large set of flags and I don't need to do any weird math with them, so I can treat it like a string in php to get around ...
1
vote
1answer
64 views

Is there a text to numeric conversion done here?

I have a table that has a column amount of type DEC. The following queries work: SELECT * FROM mytable WHERE amount < '1'; SELECT * FROM mytable WHERE amount = '1.5'; I.e. even though I use ...
0
votes
1answer
56 views

c++ mysql_fetch_field get varables name and type

I'm trying to insert in the vector the name and type of the variables in my table. the language i use is C++. here is my code: std::vector<std::string> parameters; ...
0
votes
0answers
45 views

Can I perform exact matching string search on TEXT field?

MySQL STRCMP() function returns string equality. Can I use this on TEXT field too? Or what kind of operators/functions are supported in TEXT field?
0
votes
2answers
48 views

What is the data type to use for a description?

I would like to know what data type I need to use for a description. example: Baseball cap by adidas Originals - Made from cotton - Embroidered brand logo to the front - Five panel styling - ...
1
vote
2answers
85 views

Mysql return array with right data types

I have a database table client which contains a field id INT(6) (with a primary key and auto increment). I select the last id using: $findClient = mysql_query("SELECT `id` FROM `client` ORDER BY `id` ...
0
votes
1answer
48 views

What type to use for an ID number composed of letters and numbers which will increment

What type should I use to create an ID number composed of letters and numbers and which will also increment, e.g. "HP0001" increment to "HP0002"
0
votes
3answers
44 views

MySQL's mediumint through jdbc

If I query for a mediumint column from a MySQL table through jdbc, what type would I get back in the ResultSet object? Or would that be an error? (I know JDBC's Types.java doesn't have MEDIUMINT).
1
vote
2answers
499 views

MySQL Error 1264: out of range value for column

As I set cust_fax in a table in mysql like this: cust_fax integer(10) not null, and then I insert value like this: insert into database values ('3172978990'); but then it say error 1264 out of ...
3
votes
3answers
105 views

How do I make sure that values from MySQL keep their type in PHP?

I am having a problem in my PHP script where values called from MySQL are being returned as strings, despite being marked in the database as int and tinyint. This is a problem because when converting ...
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 ...
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?
-5
votes
1answer
68 views

How can I save a YES or NO value on a form to a MySQL database [duplicate]

Possible Duplicate: Which MySQL Datatype to use for storing boolean values? I have viewed many questions on this topic but I can not find an answer, I have a HTML form with 10 questions, ...
1
vote
4answers
148 views

MySQL Primary Key Field Type

I am working with some transactional data and having issues with my primary key field. When importing data from my order manager system and Google analytics, the OrderID field has the following two ...
0
votes
0answers
326 views

CodeIgniter Active Record Return Mysql data types instead of just strings

I am using codeIgniter version 2.0.3. I was wondering if there is a simple way to return data with the correct data type. For example for schema: ...
1
vote
0answers
129 views

MySQL database structure to store objects of different types with different properties

I would like to create MySQL database structure to incorporate the following case: I need to store groups of objects of different types with different properties (name, number and size) in the same ...
1
vote
1answer
813 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
4answers
368 views

Best data type to store money values in MySQL

I want to store many records in a MySQL database. All of them contains money values. But I don't know how many digits will be inserted for each one. Please help me and answer my question. Which data ...
1
vote
3answers
264 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
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
4answers
82 views

Which SQL type should I use to input the value 4.865472349

PHP runs a script that correctly calculates a value. When I echo that value out it comes out as 4.865472349 Then a simple update script is used to enter the value into my database. $query = "UPDATE ...
0
votes
1answer
68 views

rmysql return data type

I am extracting some data from a db using R and RMySQL and the dates come back as factors. I then have to call as.Date() on this column. Because there are a lot of records, this takes a long time. ...
2
votes
1answer
685 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 ...
1
vote
1answer
32 views

data type for high non-decimal prices

I've found a lot of questions there and in the other sites about the best data type for storing prices in MySQL and they said Decimal is the best. But, my price column is a bit difference. All prices ...
4
votes
1answer
915 views

Convert BIGINT UNSIGNED to INT

I know it is unorthodox and potentially dangerous to want to convert a something from a larger size to a smaller size data type. However, in this case, it is extremely unlikely that the value of the ...
0
votes
1answer
257 views

On inserting BLOB data from php to MySQL, I can't see the accurate data type

Basically working on a test to get an idea about how to upload/display images in relation betweehn php/mysql. The problem is after I upload the image, on database, BLOB column just dipslays the "im" ...
0
votes
1answer
156 views

Defining length of CHAR type in Mysql

Consider the two String types in MySQL 1.Char[LENGTH] 2.Varchar[LENGTH] Question:Defining the LENGTH field is necessary For which type Varchar or Char ? According to My opinion It is Char but ...
4
votes
1answer
2k views

BOOLEAN or TINYINT confusion

I was designing a database for a site where I need to use a boolean datetype to store only 2 states, true or false. I am using MySQL. While designing the database using phpMyAdmin, I found that I have ...
1
vote
2answers
92 views

What's the purpose of the attribute in parentheses on ints in MySQL?

According to the documentation, the attribute in the parentheses (e.g. the "3" in SMALLINT(3)) is supposed to constrain the display of the values of the SMALLINT to three digits. However, when I ...
1
vote
3answers
213 views

What field TYPE for textarea's?

I have a form where clients will be typing a few paragraphs in various textarea's. Should I choose varchar or text for field type? Does it matter? Thanks. Erik
1
vote
2answers
339 views

mySql: How to create a table with uknown data types?

I would like your help with something that I have searched a lot but could't yet find an answer. As the title of the Question states, I am trying to create a table in mySql database in which I do not ...
2
votes
1answer
1k views

CREATE TYPE on MySQL

I couln't create a new data type on MySQL. Query is given below CREATE TYPE PERSON AS OBJECT (NAME VARCHAR (30), SSN VARCHAR (9)); How can I do that on MySQL
0
votes
2answers
839 views

php pdo with native mysql driver ( mysqlnd ) - fetch data retaining native column type

How can I fetch data from pdo-mysql retaining native type column of mysql? example: I retrieve some data from a table. This table contain id column that is a integer column. When fetch data from this ...
0
votes
1answer
316 views

Best mysql data type to store RSA keys?

I have a client/server application with its users and all... The server serialization is done using SqlAlchemy over MySQL. I am planning to assign an RSA private key to my User class for... certain ...
0
votes
1answer
80 views

Modeling database with 2 type of users (web and twitter)

I have two types of users on the database: -Web registered users -Twitter users I have to store data of both: - Web registered users: id, nick, mail, verified, password - Twitter users: id, nick ...
0
votes
1answer
313 views

a number with leading zero and optional decimal (sql)

I am designing something similar to reading a book online. As we all know, there is chapters in mostly every book. every chapter has a number: 01, 02 and so on. right now, I have some chapters that ...
0
votes
1answer
365 views

Check PHP variable type against a MYSQL data type

Just wondering, if is there any class, function or ideia on how to validate a specific value/variable against a mysql data type. We've got in PHP the is_int() is_string() is_float() etc etc... But we ...
2
votes
2answers
400 views

mysql select SET separator

I have a table with a set type. this fields is a color labels: set('Red', 'Blue', 'Green') each record can have multiple colors like: red and blue now when i select i get: Red,Blue,Green ...
2
votes
2answers
301 views

How to store metadata datatypes

How do I store metadata to describe assets? Considering that I don't know in advance which metadatafields I'll have. I have a table with assets (let's say persons), a table with metadata fields ...

1 2 3 4 5 6