1
vote
2answers
13 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 …
0
votes
5answers
913 views
cannot convert type ‘string’ to ‘int?’ via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion or null type conversion
Hi,
I'm going to try to make myself clearer. Why does C# accept the following:
object o = "hello";
int? i = o as int?;
if (i == null) {
// o was not a boxed int
}
else {
// Can use i.Value to …
1
vote
2answers
64 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
29 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
35 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
43 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{ …
0
votes
2answers
156 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 …
2
votes
2answers
158 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:
…
0
votes
1answer
78 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 …
4
votes
2answers
229 views
C++ conversion statements
What is the difference between
(type)value
and
type(value)
in C++?
0
votes
3answers
239 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 …
-1
votes
2answers
57 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 integer datatype in …
0
votes
3answers
289 views
Is there a standalone Python type conversion library?
Are there any standalone type conversion libraries?
I have a data storage system that only understands bytes/strings, but I can tag metadata such as the type to be converted to.
I could hack up some …
0
votes
2answers
83 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);
std::wstring wnum = …
5
votes
4answers
155 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 …
