The varying tag has no wiki summary.
11
votes
2answers
5k views
What is the difference between CHARACTER VARYING and VARCHAR in PostgreSQL?
John uses CHARACTER VARYING in the places where I use VARCHAR.
I am a beginner, while he is an expert.
This suggests me that there is something which I do not know.
What is the difference between ...
6
votes
4answers
306 views
Multiplying char and int together in C
Today I found the following:
#include <stdio.h>
int main(){
char x = 255;
int z = ((int)x)*2;
printf("%d\n", z); //prints -2
return 0;
}
So basically I'm getting an overflow because the ...
0
votes
3answers
154 views
Parsing a string with varying number of whitespace characters in C
I'm pretty new to C, and trying to write a function that will parse a string such as:
"This (5 spaces here) is (1 space
here) a (2 spaces here) string."
The function header would have a ...
0
votes
1answer
854 views
json parse response can have one or multiple objects
i need to parse this response in android using the android json parser but the thing i cant find the answer to anywhere is:
how do i parse the data if for example "itineraries" can contain one or ...
0
votes
2answers
378 views
Android: how do I create a listview screen with different content for each row
I'm looking to create a listview screen similar to the Sound Setting screen (in the built in Settings app, see image below), i.e I want some rows to have text + checkboxes, other rows to have text + ...
0
votes
1answer
338 views
default values/modifiers in postgres?
I've problem with default modifiers on postgres 8.4. (I think version is its not important)
I've debian ubuntu. When Im creating migrations on rails AR:
class CreateUserMails < ...