1
vote
1answer
46 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
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.
0
votes
2answers
72 views

update the session field in database

I have a database. I had created a a table containing only one row in DB if it wasn't constructed before. Why it has only 1 row is that I just use it to keep some info. There is a field of TYPE ...
0
votes
1answer
55 views

What do scale and precision mean when specifying a decimal field type in Doctrine 2?

I'm creating a decimal field to hold a financial figure in Doctrine2 for my Symfony2 application. Currently, it looks like this: /** * @ORM\Column(type="decimal") */ protected $rate; When I ...
1
vote
2answers
462 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 ...
0
votes
3answers
562 views

how to get values from sql database by selecting combobox items in c#

I'm trying this coding , what is the error in this coding: private void comboBox2_SelectedIndexChanged(object sender, EventArgs e) { SqlConnection con = new SqlConnection("Data ...
1
vote
1answer
254 views

%ud, %vud what are those

What is the meaning of this code written in c++? PGBulkInserter pgBulkInserter(postgreSQL, HOST_TRAFFIC_SCHEMA_NAME, date, flushSize, "%ud, %ud, %ud, %ud, %ud, " \ ...
-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, ...
0
votes
2answers
447 views

The property 'x' on 'tblX' could not be set to a 'null' value. You must set this property to a non-null value of type 'Int16'

List<tblX> messages = (from x in db.tblX where x.msg_id == id_id || x.name == firstName select x).ToList(); I get the error: The property 'x' on 'tblX' could ...
1
vote
1answer
281 views

Optimizing database types to compact database (SQLite)

I am working on compacting a database (SQLite) and I am trying to optimize the size of the data types that I am assigning in the schema. The data I have can be broadly divided into 3 types of numbers. ...
1
vote
3answers
257 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?
0
votes
1answer
86 views

Which data type do I use in T-SQL if the field can be very small or very large?

Suppose I have a column in a table which may hold information as short as a single char 'a' or as big as a huge binary chunk which translates to a jpg, png, mp3, whatever. Which data type should I ...
0
votes
1answer
134 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 ...
1
vote
1answer
53 views

What's the proper way to represent sports results in a database

e.g. Barcelona - Madrid 4:1 or Arsenal - Chelsea 2:0 Which data types are good to represent 4:1 and 2:0 etc? The options that come to mind are: Two smallints One decimal (i.e. 4.1 and 2.0) One ...
0
votes
1answer
149 views

Return setof varchar

I have PostgreSQL table. I need in function which returns setof varchar. My table: create table my_table ( str varchar not null ) How can I write a function that returns a set of str field?
0
votes
1answer
32 views

What should be the type/value of a primary key that should be unlimited

I am making a messaging system wherein both authenticated and unauthenticated users should be able to use. Each index of the message should be unique. I am thinking of using bigint but it has a limit ...
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
1
vote
1answer
392 views

With Python, SQLite and HTML, how do i read from a database and print to page?

I am a beginner in SQLite, so please bear with me if what i'm about to ask seems silly. I currently have a database called "Status", with two columns "stamp" and "messages". "messages" contains a ...
0
votes
3answers
346 views

How to detect database type?

I need to be sure the database I'm connecting to is MySQL and not PostgreSQL or Microsoft SQL Server.How can I find out which type of database is being used .
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 ...
-3
votes
3answers
412 views

passing date and time to SQL server using C#

Can you please help me: How do I pass String dateAndTime = "2/2/2012 5:57:00 pm" to SQL server using C#? I was passing it as a String but obviously SQL does not like the syntax. it gives me an ...
0
votes
3answers
474 views

(my)SQL database - storing different types of same value

I need to store different types of same value. The Value can represent DATE, INT, BOOLEAN, DOUBLE and any other type. I'm wondering if it is possible not using multiple tables - each for different ...
0
votes
0answers
147 views

C# Table Row to a Dynamic Class

I'm working on application in which the user defines classes using dedicated editor. The result of this step is db table which holds a class name and list of properties attached to it by the user. The ...
1
vote
1answer
54 views

Handling generic classes that is instanciated at run-time based on database data

I have a problem with my generic classes and creating them at run-time, based on data that is located in a database. In the following I have tried to give a simple example of the problem, with a ...
3
votes
5answers
140 views

Data representation and storage - person's age

I have a design issue I'm facing, I bring it up here so maybe I can get more ideas. Currently in my project, I have a scenario where I need to represent the age of children. The age can be from 0 to ...
2
votes
2answers
967 views

How to store precise decimal degree coordinates in a MySQL database

I've created a database using the store locator tutorial on Google Code, which specifies that the fields to store marker coordinates be of type FLOAT(10,6). However, when I geocode certain points ...
2
votes
2answers
871 views

What is the correct data type to use for a number

I am new to MS Access 2007 and I am creating an application using Visual Studio 2010 C#. I am wondering what datatype should I use in each parameter I am creating. For example: ...
8
votes
4answers
427 views

What is necessary from a language implementation point of view to implement type providers like in F# 3.0?

F# 3.0 adds type providers, which make it basically unnecessary to manually write or generate mappings between a DB (or another data provider) and the language/type system, because the language can ...
5
votes
3answers
787 views

Why specify a length for character varying types

Referring to the Postgres Documentation on Character Types, I am unclear on the point of specifying a length for character varying (varchar) types. Assumption: the length of string doesn't matter ...
1
vote
2answers
77 views

Jdbc check type compatiblity

Is there some way to check beforehand if a java type is compatible with a sql.Types? I could type out all the stuff like: if (BIGINT||TINYINT) try BigInteger.parse(myvalue) and if ...
3
votes
2answers
191 views

MySQL using numeric status codes vs text

Often in my projects (PHP / MySQL) I have to add a "status" field to some database tables. For example to mark if a task if submitted, approved, rejected. Out of habit so far I've been using ...
1
vote
2answers
2k views

TEXT vs VARCHAR in InnoDB MySQL 5.5. When to use each one

What are the main differences between text and varchar in InnoDB storage engine at MySQL 5.5? Is text or varchar(5000) used if we are talking about a variable text field of not more than 5000 chars?
1
vote
1answer
66 views

Oracle object type

If we are just creating type without specifying clause as shown below then by default it will create type with which datatype i.e. varchar or number CREATE TYPE <TYP_NAME>
0
votes
1answer
377 views

Liferay Group types

Hi Liferay experts, When I run the following sql select distinct(type_) from Group_ I get group types 0,1,3 in my database table Group_. What does 0 , 1 and 3 mean, and are ...
0
votes
2answers
265 views

reader.GetSchemaTable on Oracle database does not return a DataTypeName column

Doing a table = reader.GetSchemaTable(); on sql server 2005 returns me a column DataTypeName to find out the datatype of my select statement. Doing the same code on a oracle server returns me NO ...
1
vote
1answer
151 views

What is the correct type I should use to store a date up to the minute?

I want to store the date of an event in my database, but I want to do so without storing informations about seconds or anything smaller than seconds. Using Rails, in my migration I have the option to ...
0
votes
2answers
187 views

Access to MySQL strange price field

I am developing a new version of an application that was using an ms-access database because it was becoming too slow. So i decided to use MySQL as database. i'm happy with my choice. The problem is ...
2
votes
1answer
83 views

Saving Game World Matrix Position to a Database

In a game, I have players where their position and orientation is stored in a four-by-four matrix. When a user logs out of the game, I'd like to save their position and orientation to the backend ...
0
votes
2answers
365 views

SQL Database storing different types of values (in or simulated as a single field)

In a database I want to be able to assign values of a varying type to variables in a variable table. So do I need a separate value table for each value type? If so, I am not sure how you would ...
3
votes
2answers
797 views

What is the best way to store multiple data type into database

I am designing a database using MSSQL server 2005 to store log values from different devices. The datatype of the values can be boolean, int-32 or 64 bit-double There will be a lookup table called ...
10
votes
4answers
299 views

Which is more efficient for a one or two-character string: CHAR(2) or VARCHAR(2)?

A really quick one - is it more efficient to store data which might be one or two characters as CHAR(2) or VARCHAR(2) in MySql? Thanks!
0
votes
1answer
178 views

What are the data type for storing multimedia in RDBM?

What are the data type for storing multimedia in RDBM? I can only think of BLOB, TEXT...
0
votes
1answer
501 views

which data type and length is suitable for the field of auto increment id in database?

Let's say my website will be like Facebook which has a lot of entry everyday. So the entry for the field of auto increment id in database should be a lot lot lot. Instead of INT without specify the ...
1
vote
3answers
337 views

php selecting from mysql and receiving th data types

When selecting from a MySQL table in PHP the results are always strings. Is there a way to get the correct datatype already? Consider my table: CREATE TABLE bar( id INT, price FLOAT, ...
2
votes
5answers
214 views

Use of MySql Data Types

Using the following as an example I am trying to figure out the best way set up a MySql database. FoodGroupTypeCode: Grain, Vegetable, Fruit, Dairy, Protein What is the best Data Type to use to ...
6
votes
2answers
3k views

what kind of database are used in games?

what common and popular database/(types of database) used in games? MMORPG browser based ,flash games video games
2
votes
1answer
252 views

DBI: How to find the right data-types for unknown data?

With of these two approaches would you prefer: trying to find the right data-types or simply using always varchar? # ... use HTML::TableExtract; my $te = HTML::TableExtract->new( headers => [ ...
1
vote
3answers
333 views

What kind of integer should I use in MySQL?

I'm creating the database schema for a system and I started to wonder something about the Integer datatypes in MySQL. I've seen that, at least in Moodle, the datatypes are sometimes TINYINT (for stuff ...
0
votes
3answers
353 views

'Integer' type or 'String' type Ids for entities in the database/application?

I am building an application in Java. My database (Cassandra) understands only byte[] as data. Thus I am free to choose among the several datatypes, for various entities IDs like the userIds or ...
0
votes
1answer
21 views

How I can change a lot of data for one column at one time?

I have an old database, one of its tables contains many columns and one of its columns called oper and its type is varchar and I have more that 180,000 rows in this table and the value for this column ...

1 2 3