0
votes
1answer
34 views
Cast function for Hibernate
Hi, all
I have tried to cast to float numbers from string in the database fields to compare with another numbers. The field in the database was String type. I have tried to use BE …
4
votes
2answers
220 views
C++ conversion statements
What is the difference between
(type)value
and
type(value)
in C++?
2
votes
2answers
132 views
Linq to SQL Int16 Gets Converted as Int32 In SQL Command
With the method parameter
Int16? id
And the Linq to SQL where clause
where !id.HasValue || m.Id == id
The resulting command text for the condition in the data context is
Fro …
-1
votes
2answers
52 views
Converting an int representing number of cents to money
Like this question, except T-SQL instead of php.
206275947 = 2062759.47
etc.
The problem I'm running into is that an attempt to SUM the values in this column is overflowing the …
5
votes
4answers
103 views
Most succinct way to convert ListBox.items to a generic list
I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a ListBox to a List<String> (Gen …
0
votes
2answers
63 views
How to convert long to LPCWSTR?
Hi, how can I convert long to LPCWSTR in C++? I need function similar to this one:
LPCWSTR ToString(long num) {
wchar_t snum;
swprintf_s( &snum, 8, L"%l", num);
st …
0
votes
5answers
102 views
Confusing type conversion - 2 Bytes to Double
I was recently asked to take over a project in which waveform data is sampled from a power converter and sent to an intelligent agent where calculations are done and the appropriat …
4
votes
3answers
340 views
C++ difference between automatic type conversion to std::string and char*
As a learning exercise, I have been looking at how automatic type conversion works in C++. I know that automatic type conversion should generally be avoided, but I'd like to incre …
0
votes
4answers
93 views
Multiplying long values?
class Main {
public static void main (String[] args){
long value = 1024 * 1024 * 1024 * 80;
System.out.println(Long.MAX_VALUE);
System.out.println(value); …
1
vote
10answers
156 views
Why is implicit conversion allowed from superclass to subclass?
Can someone tell me why the line with "//Compiles" compiles, and why the line with "//Doesn't Compile" does not?
I don't understand why A would be implicitly convertible to B, no …
1
vote
1answer
47 views
What’s the difference between to_string() and as_a(string) in specman?
In Specman I can convert a variable to a string using either:
x.to_string();
or
x.as_a(string);
Is there any difference between the two? If not, why does Specman provide bot …
10
votes
4answers
204 views
Should the MVVM ViewModel perform type conversion/validation?
Hi
We're just getting into MVVM in WPF.
We have implemented our ViewModels with 'strongly typed' properties (int, double? etc.) that we bind to in the view.
Type conversion work …
0
votes
3answers
184 views
Groovy type conversion
Hi,
In Groovy you can do surprising type conversions using either the as operator or the asType method. Examples include
Short s = new Integer(6) as Short
List collection = new H …
2
votes
4answers
214 views
Is there any difference between type casting & type conversion?
Is there any difference between type casting & type conversion in c++.
1
vote
1answer
24 views
Fixing older program: database text encoding, and incorrect field types.
I'm currently again working on a program from when I was, umm... less capable. It has a number of problems:
The database collation is latin1_swedish_ci. I would like to convert i …
