Tagged Questions

1
vote
3answers
25 views

Sql server 2005 data type

Hi, My data type in database is of type money, the problem is when I save value from user entered input (via a text-box) its not what I expected. Example : string price = "199.99"; in the table it …
0
votes
2answers
21 views

Traverse an XML Document in a SQL Server 2008 Database Column

I have a table that contains a column that is XML data type. I am looking to put a view over the entire table including the XML data type column. The view will expand contents of the XML data type …
4
votes
7answers
164 views

check type of element in stl container - c++

how can i get the type of the elements that are held by a STL container?
0
votes
4answers
69 views

is primitive data type in c macro?

In c, are primitive data types such as "int" "long" "char" "unsigned"... all macros? If so, where are they defined? And how are they implemented such as "int" type?
8
votes
8answers
493 views

why “f = f++” is unsafe in c?

I read about 'side effect' from this website: but still not understand why f = f++ considered unsafe ? Can somebody explain?
0
votes
6answers
234 views

Why does C need arrays if it has pointers?

If we can use pointers and malloc to create and use arrays, why does the array type exist in C? Isn't it unnecessary if we can use pointers instead? Thanks.
0
votes
1answer
43 views

Has the way excel evaluates the Date type changed in Excel 2007

I have some fairly old code that runs just fine in Excel versions before 2007. In 2007, it throws a runtime error: run-time error 16 : expression is too complex. The expression is pretty simple and …
0
votes
2answers
95 views

Datatype within C#

Is there a datatype within C# that if you put to for example 0001, and add 1, will be 0002?
1
vote
2answers
121 views

What Is the difference between how the char datatype is stored or represented in 32bit vs 64bit in C?

What Is the difference between how the char datatype is stored or represented in 32bit vs 64bit in C?
0
votes
2answers
66 views

Which .NET DataType for SQL-Query-Data as webservice return?

hi, I am coding a webservice in ASPX which queries a local SQL-Database: SqlDataAdapter dAdapter = new SqlDataAdapter(query, connString); SqlCommandBuilder cBuilder = new SqlCommandBuilder(dAdapter); …
0
votes
2answers
309 views

How to CAST SQL Server type varbinary to integer in SSIS?

I need to use a binary data in a transformation as an integer and do some manipulation, but how to do the casting? I tried many SSIS data types but no luck. By the way I do not want to use script …
0
votes
2answers
27 views

How to find out the availability of datatype in Postgres

Is there any way to find out particular datatype [say for example chkpass] is available or not through a query ?
1
vote
2answers
42 views

Reading datypes correctly by PHP from Postgres

How do you compile integer data in Postgres by PHP? My integers are string as the following show by var_dump ( $_SESSION ) 'logged_in' => int 1 'user_id' => string '9' (length=1) …
1
vote
1answer
45 views

Does Mysql Text DataType reserves any memory space

Hi All, I want to know if mysql TEXT data type reserves any space even if there is no data in that row? I am little confuse. Can anyone provide me any input on this. Thanks in advance.
5
votes
6answers
421 views

Is there a good reason I see VARCHAR(255) used so often (as opposed to another length)?

In multiple courses, books, and jobs, I have seen text fields defined as VARCHAR(255) as kind of the default for "shortish" text. Is there any good reason that a length of 255 is chosen so often, …

1 2 3 next
15 30 50 per page