3
Answers

Which software is better to develop Android Apps ?

Can any one tell me which software is more compatible, felixible to develop android apps? basically i am a dotnet developer i am going to learn mobile apps development i am confused to select the software which suits to develop mobile apps either ANDROID STUDIO or VISUAL STUDIO (xamarin).
 
Please suggest me any best software and most developers using to develop the apps.. 
Answers (3)
0
Marcel Hertel

Marcel Hertel

NA 54 0 14y
hi,

assume that you have the columns emp_id and emp_name in your emp-table you can use the following procedure:

create procedure sp_Sortdata
(
    @Orderbyclause varchar(50)
)
as
select
    *
from
    emp e
order by   
    case when @Orderbyclause = 'emp_id' then e.emp_id end asc
    ,case when @Orderbyclause = 'emp_name' then e.emp_name end asc
   
if you execute exec sp_Sortdata 'emp_id' the procedure returns the emp-table ordered by emp_id

i hope this helps

Marcel Hertel