Is there any incompatibility and errors between Internet explorer and PostgreSQL?

0

In my work we used PostgreSQL version 9.0 as a database for several systems. Some clients tell us that sometimes they can not find certain search data using Internet Explorer 9, 10 and 11. I as a developer use Firefox and sometimes Chrome and can never find these errors. I believe there is some incompatibility of this database with IE itself. Is that true? Is there even a compatibility problem like IE?

    
asked by anonymous 11.03.2015 / 18:27

2 answers

3

Database does not influence the browser that the client is using, which may be influencing are the Javascript files that are being loaded on the page. Some function may be compatible with one browser but not with another, as is the case with Internet Explorer as you are talking about.

The database is present on the server side, who is responsible for managing the driver settings can be a server such as Tomcat, Wilfly or Apache (if you use PHP), so there is no incompatibility between the browser that belongs to the client side with PostgreSQL or another database that belongs to the server side. It was clear? Any questions are here.

    
11.03.2015 / 18:33
4

The problem certainly lies in the way the research is done. You are not finding differences in results displayed depending on the brand of the browser. You are encountering differences depending on who is using the system.

It's even possible to have different data being presented in different browsers, but then it shows that your pages are more complex than they should be and are poorly tested. I'm not saying that you have this problem, I just say it is possible, although highly unlikely. If you think it might be this, that there is something on the page that might be hiding data in IE, open a specific question and show your code that you think is doing this. There is no way to analyze without seeing code. But reinforcement that is unlikely to have any problem.

But answering your question objectively incompatibility between the database and any browser not because they even talk to each other.

Either way you can test this easily. Use IE and see if anything changes. And / or have your clients test with another browser (I know this is a bit trickier to do depending on the client) and the result will be the same. That is, I would discard any problem with the browser, but try to be sure, there is no better way to find out.

Lastly you may still be curious about the problem. If there is really a problem and there is no error of interpretation of the data by the clients or by you, the error is probably in the server-side application. Probably under certain circumstances it recovers the data one way or another.

Can the browser influence this? Yes, it may, but again it is highly unlikely. Your application would need to treat the data differently depending on the information of which browser the user is using being captured through JavaScript and sent to the server. But all this is speculation and if it were this, you would know.

    
11.03.2015 / 18:41