Posts by Fabio Santos • 11 points
6 posts
-
0
votes0
answers65
viewsQ: Node start: How to run 2 commands?
When I try to execute the node start where I have only tsc it works. Correctly compiles the Typescript files. When I try to run the node start where I have only nodemon ./dist/app it works. Runs my…
-
0
votes1
answer38
viewsQ: how to consult database informed by variable?
Just an example of query sql server: SELECT A.name FROM [banco1].sys.procedures as A What I need is for this query above to be changed to something like: SELECT A.name FROM…
sql-serverasked Fabio Santos 11 -
-1
votes2
answers722
viewsA: Calling c# method in javascript
recovered Data is the name of the backend function. So change the code of @Maycon F. Castro to "Suapagina.aspx/recoveredDados". But, you need to see the rest of the code. You need to debug it to see…
-
-1
votes3
answers2559
viewsA: What is the difference between software, program, app, and system?
Software = Program = App = App. In practice, all the same thing. Nowadays when we talk "app" most people relates the mobile app. But, nothing else is than App = Application = App. The Information…
-
0
votes2
answers28
viewsQ: Visual Studio (C#): Use web.debug.config without publishing
I would like to have 2 configuration files in my application c#. They would be web.config and web.debug.config. The goal of this is that I can put some settings like database access and some…
-
1
votes2
answers56
viewsA: How to ignore a query line in the database?
Try this: SELECT max(calldate) calldateMax, src, dst, duration, disposition FROM cdr group by src, dst, duration, disposition ORDER BY calldateMax DESC…