Discussions
Activity
Best Of...
Sign In
·
Register
Home
›
NAV Three Tier
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In with Mibuso
Sign In
Register
Quick Links
Categories
Recent Discussions
Activity
Best Of...
Unanswered
Categories
67.6K
All Categories
73
General
73
Announcements
61.9K
Microsoft Dynamics NAV
14.9K
NAV Three Tier
37.9K
NAV/Navision Classic Client
3.6K
Navision Attain
2.3K
Navision Financials
112
Navision DOS
843
Navision e-Commerce
726
NAV Tips & Tricks
759
NAV Dutch speaking only
600
NAV Courses, Exams & Certification
1.9K
Microsoft Dynamics-Other
1.5K
Dynamics AX
209
Dynamics CRM
98
Dynamics GP
7
Dynamics SL
1.4K
Other
959
SQL General
372
SQL Performance
29
SQL Tips & Tricks
23
Design Patterns (General & Best Practices)
Architectural Patterns
7
Design Patterns
3
Implementation Patterns
39
3rd Party Products, Services & Events
1.5K
General
951
General Chat
1.6K
Website
76
Testing
1.2K
Download section
23
How Tos section
250
Feedback
12
NAV TechDays 2013 Sessions
13
NAV TechDays 2012 Sessions
ADO.NET in AL
jimmyf
Posts:
75
Member
2019-02-03
in
NAV Three Tier
Hi
Is it possible to connect to an external database in Business Central AL using ADO or ADO.NET?
Thanks
0
Comments
BlackTiger
Posts:
1,202
Member
2019-02-03
No. Because .NET suddenly became "not secure" to run in MS clouds.
But you still can use the normal on-prems NAV.
"You can’t just ask customers what they want and then try to give that to them.
By the time you get it built, they’ll want something new.”
Steve Jobs
0
nicolassaleron
Posts:
11
Member
2019-02-06
Hello,
Like BlackTiger said: you can do it on-prem with .Net variables.
To be compliant with Microsoft Cloud and On-Prem deployments, you should consider:
- using an Azure Function
- or develop a Web API (for instance with ASP.Net Core
https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-2.2&tabs=visual-studio
) and call it with HttpClient (
https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/methods-auto/httpclient/httpclient-data-type
)
0
Sign In
or
Register
to comment.
Comments
But you still can use the normal on-prems NAV.
By the time you get it built, they’ll want something new.” Steve Jobs
Like BlackTiger said: you can do it on-prem with .Net variables.
To be compliant with Microsoft Cloud and On-Prem deployments, you should consider:
- using an Azure Function
- or develop a Web API (for instance with ASP.Net Core https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-2.2&tabs=visual-studio) and call it with HttpClient (https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/methods-auto/httpclient/httpclient-data-type)