Posts by Zack Stone • 145 points
2 posts
-
-1
votes1
answer35
viewsA: Error 404 or Error 0 app
It’s a CORS error, it’s explicit in the Chrome console error message. When running local, you have to add the url http://localhost (or *) to the header Access-Control-Allow-Origin. I suggest a study…
-
5
votes1
answer151
viewsQ: Is there a way to name the selected tables from a stored database to identify them in the Dataset?
I have a Store Procedure in SQL Server that projects various data. Example: CREATE PROCEDURE [dbo].[teste_sp] AS BEGIN select * from compra select * from cliente select * from fatura END However,…