0
votes
2answers
33 views
Boolean fields in MySQL Django Models?
At Django, a boolean field in MySQL is stored as a TINYINT. When I retrieve it, I get 0 or 1. Shouldn't I get False or True? Is there a way to achieve this behaviour?
3
votes
3answers
88 views
Equivalence testing in Haskell
Hi
A quick question that has been bugging me lately. Does Haskell perform all the equivalence test in a function that returns a booleanm, even if one returns a false value? eg:
f …
1
vote
2answers
39 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, everyt …
0
votes
2answers
49 views
A Method that returns true if the Temperature objects represents a temp below freezing point (JAVA)
I'm trying to write a method named isLowerThanFreezing that returns true if the Temperature object represents a temperature below the freezing point for water (32.0 F, 0.0 C, or 27 …
2
votes
9answers
156 views
How to check if String value is Boolean type in java?
Hi,
Did a little search on this but couldn't find anything usefull.
Point being that if String value is either "true" or "false" the return value should be true. In every other v …
0
votes
1answer
34 views
ROR - My logic works, Boolean value doesn’t post
Hello fellas, My logic tests an inventory supply; and the < operator functions fine. How do I assign boolean values to "instock"? (using POST) In this test, under both condition …
0
votes
4answers
51 views
Simple read vs write boolean variable performance comparison question
What should be the preferred way by programmers:
1) Only Write:
SomeBoolean = True
2) Read but write only if necessary
If Not SomeBoolean Then SomeBoolean = True
3
votes
3answers
88 views
Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed?
First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works:
struct A
{
public bool bValue1;
…
1
vote
1answer
51 views
Pass a Boolean Ada type in Interfaces.C
I would like to now how to pass a standard Boolean Type in Ada through the Interfaces.C package in order to call a DLL function.
The Interfaces.C package does not contain the Ada B …
0
votes
5answers
140 views
Boolean in Python
Does Python actually contain a Boolean value? I know that you can do:
checker = 1
if checker:
#dostuff
But I'm quite pedantic and enjoy seeing booleans in Java. For instance …
1
vote
3answers
89 views
Boolean Expression Evaluation in Java
Hey everyone,
Is there a relatively simpler (when compared with writing a parser) way to evaluate boolean expressions in Java?
I do not want to use the JEP library.
I have a String …
1
vote
4answers
110 views
Should I use 0/1 or True/False boolean?
0/1 can be flexible and can add options such as "2, 3, 4" in the future.
Does TinyINT in MySQL take up more space than boolean?
Personally, I use 0 and 1 for everything.
You c …
4
votes
3answers
126 views
Effect of a Bitwise Operator on a Boolean in Java
The bitwise operators are supposed to travel the variables and operate on the bit by bit. In the case of integers, longs, chars this makes sense. These variables can contain the …
0
votes
1answer
67 views
Core Data mishandles NSCFBoolean ?
Hi,
I've got a Core Data managed object that has an attribute with a "Boolean" type.
In my header file I've got this:
@property (nonatomic, retain) NSNumber * includeInHistory;
…
0
votes
1answer
24 views
MutableArray loaded with a .plist file Boolean Value. How do I test whether True or False??
I seem to have a problem understanding how to conditionally test a boolean value loaded from a .plist to a mutablearray. I simply dont understand what i am supposed to do and con …
