2
votes
3answers
92 views
Efficiently convert a long string to long in Java
I've really a long sequence of characters such as 123222222222230000000000001. I want to convert this to a long. What is the most efficient way to do it in Java?
UPDATE: The max length of sequence …
1
vote
5answers
123 views
strange double to int conversion behavior in c++
The following program shows the weird double to int conversion behavior I'm seeing in c++:
#include <stdlib.h>
#include <stdio.h>
int main() {
double d = 33222.221;
printf("d = …
0
votes
1answer
103 views
Java:Convert long to String?
Hello friends,
I am absolutely new to Java and Blackberry development. I've started learning Java and Blackberry development. I just created sample BB app, which can allow to choose the date.
…
2
votes
3answers
84 views
Why won’t Cast<double>() work on IEnumerable<int>? [closed]
Possible Duplicates:
Enumerable.Cast<T> extension method fails to cast from int to long, why ?
Puzzling Enumerable.Cast InvalidCastException
Cast/Convert IEnumerable<T> to …
2
votes
3answers
37 views
Forcing a datatype in MS Access make table query
I have a query in MS Access which creates a table from two subqueries. For two of the columns being created, I'm dividing one column from the first subquery into a column from the second subquery.
…
1
vote
2answers
22 views
Converting an Integer to Enum in PostgreSQL
I have created a custom data type enum like so:
create type "bnfunctionstype" as enum ( 'normal', 'library', 'import', 'thunk', 'adjustor_thunk' );
From an external data source I get integers in the …
1
vote
2answers
68 views
How do I convert a c++ string to a .NET String^ ?
I've been trying to figure out how to convert a string to a String in Visual Studio 2005 with no luck.
Here is the relevant code:
#include <string>
using namespace std;
#using …
0
votes
2answers
181 views
String in scientific notation C++ to double conversion
Hi, I've got a database filled up with doubles like the following one:
1.60000000000000000000000000000000000e+01
Does anybody know how to convert a number like that to a double in C++?
Is there a …
0
votes
2answers
40 views
VB.NET Conversion problem when trying to convert from base class to subclass (BC30311: “Value of type ‘<type1>’ cannot be converted to ‘<type2>’”)
Hello!
Please take a look at the following code:
Public Sub Method(Of TEntity As EntityObject)(ByVal entity As TEntity)
If TypeOf entity Is Contact Then
Dim contact As Contact = entity …
0
votes
2answers
34 views
Convert Session Object to IOrderedQueryable<T>
I need to convert a Session object to an IOrderedQueryable and came up blank. I've thought of creating a wrapper, but its not working properly. Basically, I am pulling a Linq query and would like to …
0
votes
2answers
48 views
WPF binding with explicit conversion.
Hello everyone,
My question may be a repeat of other conversion question but I feel mine is different.
Here goes... [simplified example].
public class DataWrapper<T>
{
public T DataValue{ …
2
votes
2answers
160 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
From the visualizer:
…
4
votes
2answers
231 views
C++ conversion statements
What is the difference between
(type)value
and
type(value)
in C++?
0
votes
1answer
104 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 BETWEEN criteria using …
5
votes
4answers
178 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> (Generic List).
At the …
