Tagged Questions

0
votes
2answers
34 views

Getting logical drives

I use following code to get logical drives: string[] strDrives = Environment.GetLogicalDrives(); but when I want to iterate through it, an exception occurs, with the message: D …
0
votes
3answers
60 views

Django very tiny modification - logical delete

Hi, I want to make the following tiny modification to the Django framework. I want it to create a "deleted" field for each model I create, plus of course I want it to be checked a …
4
votes
5answers
385 views

Logical xor operator in c++?

Is there such a thing? First time I encountered a practical need for it, but I don't see one listed in stroustrup. I intend to write: // Detect when exactly one of A,B is equal to …
0
votes
3answers
152 views

How to make a logical boolean parser for text input ?

Hello friends, I need to make a parser to be able to extract logical structure from a text input in order to construct a query for some web service. I tried to use regular expres …
1
vote
3answers
127 views

SQL Logic Operator Precedence: And and Or

Are the two statements below equivalent? SELECT [...] FROM [...] WHERE some_col in (1,2,3,4,5) AND some_other_expr and SELECT [...] FROM [...] WHERE some_col in (1,2,3) or some_ …
7
votes
4answers
426 views

bitwise operators and “Endianness”

Does Endianness matter at all with the bitwise operations. Either logical or shifting? I'm working on homework with regard to bitwise operators and I can not make heads or tails …
1
vote
2answers
256 views

bitwise operator variations in C++

I read in a book that C++ provides additional operators to the usual &,|, and ! which are "and","or" and "not" respectively, plus they come with automatic short circuiting prop …
1
vote
4answers
214 views

Prevent misuse of logical operator instead of bitwise operators

In C++ it's possible to use a logical operator where a biwise operator was intended: int unmasked = getUnmasked(); //some wide value int masked = unmasked & 0xFF; // izolate l …
0
votes
1answer
45 views

Can anybody help this general issue - when editing Record in ASP.Net?

Scenario: I have 2 entities Employee and Asset Employee table (EmployeeID -- PK)  Asset table (EmployeeID --FK) On the asset definition page, I have a dropdown of Active Employees …
0
votes
2answers
178 views

Logic for Searching *.* from text file using J2ME Application

Hello, Friend I have a one textField in J2ME. I want to search from a textfile using that textField Value then what will be the logic for that ? Suppose if i enter abc in textFi …
0
votes
3answers
285 views

Is there any way of reducing the dump file size of a Sybase database?

When I dump a Sybase database, it doesn't seem to matter whether there's data in the tables or not, the file size is the same. I've been told that this is down to the fact that my …
0
votes
3answers
241 views

Heuristic for sliding tile problem.

The idea is to move all of the right elements into the left and the left into the right with an empty space in the middle. The elements can either jump over one or two pieces into …
1
vote
3answers
252 views

Bitwise Ops

I'm hooked on bitwise for a new security paradigm I'm creating called VMAC. Variable Matrix Access Control. I want to do logical implication on to bit strings. (1) Before I rein …