Posts by Akostha • 146 points
3 posts
-
0
votes0
answers25
viewsQ: Use Angular 8 with angular/core in webpack.Exports externals
I am with an Angular 8 project and would like to get the javascript files of a CDN. For example, I have rxjs and instead of it being part of the build, I would like it to be obtained in Runtime from…
-
2
votes3
answers1779
viewsA: Many tables with little data or few tables with lots of data?
Like everything in IT. Depends!!! In a relational database having normalized information is a good option. Of course using indexes is critical. The staff commented even the third normal way, and I…
-
1
votes1
answer293
viewsA: "Too Many Connections" Java + Msql
Hello, Looking only at the method, it is correct. You make the query and close the ResultSet and PreparedStatement then. I would just put the closed() in the finally, along with the connection. As…