Home » Community » Newbie corner » SqlVal to int (Typecast) (Typecasting from sqlval type to other types)
Re: SqlVal to int (Typecast) [message #45175 is a reply to message #45174] |
Wed, 23 September 2015 06:58   |
|
Hi ayana,
ayana wrote on Wed, 23 September 2015 06:25SqlVal ro;
Sql UserQuerySql;
UserQuerySql.Clear();
UserQuerySql * Select (Count(MBVARINDEX)).From ( PARAMETER );
while ( UserQuerySql.Fetch() )
{
ro=Count(MBVARINDEX);
}
In the above query whatever the count value I am getting is of type 'SqlVal',I want that to typecast into 'Int', Let me know how to do typecasting for it.
This SqlVal is actually only representation of sql column used when constructing the query. What you need is the result, which is accesible via the Sql object after calling Fetch:
int ro;
Sql UserQuerySql;
UserQuerySql.Clear();
UserQuerySql * Select (Count(MBVARINDEX)).From ( PARAMETER );
while ( UserQuerySql.Fetch() )
{
ro=sql[0];
}
See the Sql tutorial, it demonstrates this and many other useful and important thing about sql in U++.
Best regards,
Honza
|
|
|
Goto Forum:
Current Time: Fri Jun 20 19:35:33 CEST 2025
Total time taken to generate the page: 0.03638 seconds
|