5
votes
8answers
1k views
What is the best way to convert an int or null to boolean value in an SQL query?
What is the best way to convert an int or null to boolean value in an SQL query, such that:
Any non-null value is TRUE in the results
Any null value is FALSE in the results
3
votes
5answers
511 views
javascript arrays and type conversion inconsistencies
I have been playing with javascript arrays and I have run into, what I feel, are some inconsistencies, I hope someone can explain them for me.
Lets start with this:
var myArray …
2
votes
8answers
146 views
difference between Convert.ToInt32 and (int)
the following syntax throws an compile time error like
Cannot convert type 'string' to 'int'
string name=(Session["name1"].ToString());
int i = (int)name;
whereas the code belo …
2
votes
3answers
319 views
How do I convert a String to an InputStream in Java?
Given a string:
String exampleString = "example";
How do I convert this to an InputStream?
1
vote
4answers
83 views
Converting from One Class to another Class using Xml Serialization in C#
Hi,
In our project we are consuming WCF webservices exposed at Central location as services with basicHttpBinding.
In client desktop application we need consume those webservice …
1
vote
7answers
653 views
C# - setting a property by reflection with a string value
Hi, I'd like to set a property of an object through reflection, with a value of type string.
So, for instance, suppose I have a Ship class, with a property of Latitude, which is a …
1
vote
1answer
171 views
Swig typecast to derived class?
I notice that Swig provides a whole host of functions to allow for typecasting objects to their parent classes. However, in C++ one can produce a function like the following:
A * …
1
vote
1answer
121 views
*Subtle* Differences between VB functions and Convert.To* functions?
While converting types, I have found myself using both VB functions and BCL Convert.To* methods.
E.g.)
Cstr() vs. Convert.ToString()
CInt() vs. Convert.ToInt32()
CDbl() vs. Con …
0
votes
4answers
514 views
How to convert DateTime to a number with a precision greater than days in T-SQL?
Both queries below translates to the same number
SELECT CONVERT(bigint,CONVERT(datetime,'2009-06-15 15:00:00'))
SELECT CAST(CONVERT(datetime,'2009-06-15 23:01:00') as bigint)
Re …
0
votes
4answers
720 views
How can I convert a character to a integer in Python, and viceversa?
I want to get, given a character, its ascii value.
For example, for the character 'a', I want to get 97,
and viceversa.
Thanks,
Manuel
0
votes
2answers
839 views
how to convert tis-620 string to utf-8 string in java
how to convert tis-620 string to utf-8 string in java
