Catch Browser Information in MySQL Procedure

1

Is it possible to get browser information in a PROCEDURE via MySQL code?

Without having to pick up via back-end code and pass as a parameter. That is, does MySQL have any function that returns information from the browser?

    
asked by anonymous 16.02.2017 / 19:20

1 answer

3

This is a conceptual mistake of yours. MySQL needs a server to run, that is, from a computer, which is a node in the computer network.

The browser needs a computer to run, which is also a node in the network.

Each node has a unique "name", which is the IP. The nodes can be routers, bridges, mainframes, anything that can be connected to a network of computers, even subnetworks -redes.

Your browser does not have an IP address, who owns it is your computer.

SQL may be considered a specific domain language and is mainly used to manipulate data in relational databases.

Nothing prevents, however, that the team that develops MySQL will one day use the main technology (C ++) of the DBMS to get more information from the client when accessing a MySQL server, as long as it is authorized by the user.

    
16.02.2017 / 20:01