How to get the current database name in axapta
Here is a small trick to know the name of current data base in axapta.
Axapta supports a class called SysSqlSystemInfo by using this class we can get the current database name...
To do this just create a new job and write following code or you can copy paste from here also.
static void sqlSysName(Args _args)
{
;
info(SysSQLSystemInfo::construct().getloginDatabase());
}
- Harry
No comments:
Post a Comment
Thanks