Posts by lolol • 417 points
11 posts
-
2
votes3
answers25273
viewsA: Table and column nomenclature
https://github.com/incompletude/bancodedados I wrote a documentation that aims to ensure good experience by establishing consistency rules in databases that meet Restful architecture, including…
-
0
votes3
answers527
viewsA: Structure/Nomenclature of Tables
Dude, I gave my piece on the subject in the answer below, see if you can meet. What naming conventions are in mysql database creation, tables and columns…
-
4
votes1
answer63
viewsA: Capture messages update automatically in front-end
There are three broad outlines, namely: a. a recursive timeout looking for new information. when this information exists, it is displayed. this approach is more common because it is simpler to…
-
5
votes4
answers2383
viewsA: More important than important
The important statement serves to determine that a certain property has priority regardless of the order in which they appear on the stylesheet, so in the above situation where two statements…
-
1
votes1
answer97
viewsA: Recover users from a particular locale with Facebook API
Through the Facebook API you can get a list of a user’s friends who are close to this user. The way you built your question however hints that you want to get a list of generic users associated with…
-
1
votes1
answer110
viewsA: External mobile database
The most widely used current methodology consists of two applications: a Restful application, commonly API, hosted on a conventional web server that accesses a conventional database (Mysql for…
-
1
votes1
answer589
viewsA: Application Layers and Web API 2
I see three factors to consider: If data needs to be exposed to third parties via HTTP this architecture is a prerequisite, not an optional. If your application doesn’t need access levels other than…
-
3
votes1
answer139
viewsA: Insert images into database
Yes. Place the photos on your computer preserving the folder structure and make a robot (can be a php) that does a full table scan (ie a select all and a loop in this result) looking for the photo…
-
1
votes1
answer838
viewsA: How to list sql server databases in a combobox
You can get the list of all Databases through the command below: SELECT * FROM sys.databases
-
4
votes2
answers2934
viewsA: Search for nearby strains
You need to develop a database that contains the latitudes and longitudes of each of the companies you want to display in the results. When the user informs your address you must integrate with some…
-
2
votes2
answers1009
viewsA: How to avoid blocking by number of accesses on Facebook Graph?
You are making this request for thousands of different posts? There are three ways: optimize your queries to make the most of each request, for example using the instruction IN (). set a timer that…