Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
13k views

What is the difference between BIT and TINYINT in MySQL?

In which cases would you use which? Is there much of a difference? Which I typically used by persistence engines to store booleans?
7
votes
8answers
3k views

Which is faster: char(1) or tinyint(1) ? Why?

MY PLATFORM: PHP & mySQL MY SITUATION: I came across a situation where I need to store a value for user selection in one of my columns of a table. Now my options would be to: Either declare ...
5
votes
3answers
169 views

Use TinyInt to hide/show controls?

I have 6 buttons on my GUI. The visibility of the buttons can be configured via checkboxes. Checking the checkbox and saving means the correpsonding button should be shown. I am wondering if it is ...
4
votes
3answers
1k views

TINYINT vs ENUM(0, 1) for boolean values in MySQL

Which one is better, Tinyint with 0 and 1 values or ENUM 0,1 in MyISAM tables and MySQL 5.1?
4
votes
2answers
434 views

Why can't tinyint store more than the number 255 in MySQL?

If TINYINT can store three characters, for example, why can't it store up to the number 999?
3
votes
4answers
381 views

SQL: Is it efficient to use tinyint instead of Integer if my max value is 255?

Lets assume I want to save the count of datagrid rows which can be max. 24 because each row is 1 hour. To save the row index in the database a tinyint field would be totally enough. But back in my ...
2
votes
3answers
419 views

MySQL Boolean “tinyint(1)” holds values up to 127?

I wanted to make a true/false field for if an item is in stock. I wanted to set it to Boolean ( which gets converted to tinyint(1) ), 1 for in stock, 0 for not in stock. I am getting feeds from ...
2
votes
1answer
398 views

Appropriate data field type for true/false value?

What's the most appropriate (read least data consuming) data field to store a true/false/1/0 value in a mySQL database? I have previously used a one character long tinyint, but I am not sure if it's ...
2
votes
1answer
342 views

asp.net mvc linq sql problem

I am working on a project using asp.net mvc 2 and linq to sql. The problem occurs when trying to insert data into a table where the table has an identity column type of tinyint. When trying to insert ...
2
votes
1answer
2k views

How do I convert a MySQL function result to tinyint(1)

Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everything is golden. ...
2
votes
4answers
286 views

Is there an advantage on setting tinyint fields when I know that the value will not exceed 255?

Should I choose the smallest datatype possible, or if I am storing the value 1 for example, it doesn't matter what is the col datatype and the value will occupy the same memory size? The question is ...
1
vote
3answers
58 views

MySQL: storing several boolean values in one column. One tinyint(4) -vs- several tinyint(4)

I need to store 5 boolean values in 1 table. Each value could be stored as tinyint(4). So, there are 5 tinyint(4). I'm thinking of putting 5 boolean values in one tinyint(4). I believe, everybody ...
1
vote
1answer
176 views

“Treat Tiny As Boolean” and Entity Framework 4

I have a situation where I need to treat TINYINT in a MySQL database as a numeric value and not as TRUE / FALSE. From what I understand, the MySQL .Net Connector use to map TINYINT as Byte. ...
1
vote
1answer
247 views

Access linked table to SQL Server: TinyInt incorrect mapping

I got a SQL Server PriceLists table: CREATE TABLE [dbo].[PriceLists]( [PriceListId] [tinyint] IDENTITY(1,1) NOT NULL, [PLName] [varchar](20) NULL, CONSTRAINT [PK_PriceLists] PRIMARY KEY ...
1
vote
2answers
169 views

Trouble calling stored procedure with parameters

I am trying to update SQL Server Agent schedules using msdb.dbo.sp_update_schedule, but when I try to call the stored procedure from code I get exceptions. System.Data.OleDb.OleDbException: ...
1
vote
3answers
1k views

enum('yes', 'no') vs tinyint — which one to use?

What's the best practice for fields that hold true/false values? Such columns can be defined as enum('yes','no') or as tinyint(1). Is one better/faster than the other? Is it better to use ...
0
votes
0answers
12 views

How to set the value of a MySQL TINYINT(1) using connector net in vb.net

I'm trying to insert a row into a MySQL table which includes boolean values as TINYINT(1) using the supplied connector net version 6.4.4. When entering something like: mysqlString = "INSERT INTO ...
0
votes
2answers
65 views

Strange behavior with php empty and 0 vs “0” [closed]

I'm watching a video tutorial where the instructor is testing a form submission. The code he is using is: $required_fields = array('menu_name', 'position', 'visible'); foreach ($required_fields as ...
0
votes
1answer
126 views

Storing something as unsigned tinyint in php

Is there a way to explicitly store my numbers in php as tinyint (1 byte instead of 4). Or could i only enforce this by storing them 4 by 4 in an int? (using a few binary operations) I generate these ...
0
votes
2answers
433 views

float vs smallint vs decimal in mysql

Now I have a table with impressions, clicks and ctr. I was wondering if I should use tinyint(1) and store ctr which has a range from 1-250 or should I store it as a float which has more precision. ...
0
votes
2answers
64 views

returning the name of the column with the boolean value 0

I want to query the table below as to return the titles of the column where the intersection of SessionId and Roomx is 0.The type of the Room is TINYINT - which in mysql represents BOOLEAN Below is ...
0
votes
3answers
230 views

Using String enums in MySQL - performance question

I currently use enums as TINYINTs in MySQL database. My tables have a few million rows in them. We then map the enums from TINYINT to Strings elsewhere. I am considering storing these enums as ...
0
votes
2answers
793 views

Html.RadioButton group defaulting to 0

A default value of 0 is creeping into a Surveys app I am developing, for no reason that I can see. The problem is as follows: I have a group of Html.RadioButtons that represent the possible values a ...