2
Answers

how to connect mysql and angular 5 with node api in ubuntu

Photo of Zakir Ahamed

Zakir Ahamed

7y
189
1
hi Friends,
 
 
can anyone Help me,
 
i want to know how to connect the Angular 5(Front End Design) and Mysql (BackEnd) connected Using Node API  in UBUNTU 14.04 version.
 
Thanks
 

Answers (2)

1
Photo of Ravi Sangtani
NA 806 6k 7y
Hi! try this one
  1. bool isfound = false;  
  2. for (int i = 0; i < allstd.Length; i++)  
  3. {  
  4. isfound = false;  
  5. for (int j = 0; j < present.Length; j++)  
  6. {  
  7. if (allstd[i] == present[j])  
  8. {  
  9. isfound = true;  
  10. break;  
  11. }  
  12. }  
  13. if (!isfound)  
  14. {  
  15. MessageBox.Show(allstd[i]);  
  16. }  
  17. }