I have moved an asp.net application from windows 2000 to
windows xp. The application gets data from an sql server
2000. Some of the queries declare some variables with the
BIGINT datatype to hold the results of some calculations.
When I run the application I get the error "Cannot find
datatype bigint" - is it because I have moved the
application from win 2000 to win xp? What can I do to
solve the problem? The int datatype will not be
sufficient to hold the calculated values so this is not a
solution.

I would appreciate any answer that gives me an idea of
what to do.

Thanks,
Dorte

Re: Cannot find datatype bigint by Miha

Miha
Thu Jan 22 02:44:14 CST 2004

Hi,

When do you get the exception?

--
Miha Markic - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

"Dorte" <anonymous@discussions.microsoft.com> wrote in message
news:1c4c01c3e0bf$9d9a5b20$a101280a@phx.gbl...
> I have moved an asp.net application from windows 2000 to
> windows xp. The application gets data from an sql server
> 2000. Some of the queries declare some variables with the
> BIGINT datatype to hold the results of some calculations.
> When I run the application I get the error "Cannot find
> datatype bigint" - is it because I have moved the
> application from win 2000 to win xp? What can I do to
> solve the problem? The int datatype will not be
> sufficient to hold the calculated values so this is not a
> solution.
>
> I would appreciate any answer that gives me an idea of
> what to do.
>
> Thanks,
> Dorte



Re: Cannot find datatype bigint by anonymous

anonymous
Thu Jan 22 03:27:34 CST 2004

Hi,

It happens when I call the Fill method on the DataAdapter
object. I have the queries in separate text files, and it
seems that Visual Studio does not recognize the BIGINT
(no colouring).

Dorte

>-----Original Message-----
>Hi,
>
>When do you get the exception?
>
>--
>Miha Markic - RightHand .NET consulting & software
development
>miha at rthand com
>www.rthand.com
>
>"Dorte" <anonymous@discussions.microsoft.com> wrote in
message
>news:1c4c01c3e0bf$9d9a5b20$a101280a@phx.gbl...
>> I have moved an asp.net application from windows 2000
to
>> windows xp. The application gets data from an sql
server
>> 2000. Some of the queries declare some variables with
the
>> BIGINT datatype to hold the results of some
calculations.
>> When I run the application I get the error "Cannot find
>> datatype bigint" - is it because I have moved the
>> application from win 2000 to win xp? What can I do to
>> solve the problem? The int datatype will not be
>> sufficient to hold the calculated values so this is
not a
>> solution.
>>
>> I would appreciate any answer that gives me an idea of
>> what to do.
>>
>> Thanks,
>> Dorte
>
>
>.
>

Re: Cannot find datatype bigint by Miha

Miha
Thu Jan 22 05:04:06 CST 2004

Hi,

How is your dataset configured?
How does your select look like?
How does your SQL table look like?

--
Miha Markic - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

<anonymous@discussions.microsoft.com> wrote in message
news:245c01c3e0c9$f7764f00$a501280a@phx.gbl...
> Hi,
>
> It happens when I call the Fill method on the DataAdapter
> object. I have the queries in separate text files, and it
> seems that Visual Studio does not recognize the BIGINT
> (no colouring).