Quantcast
Channel: User Nirbhay Shah - Stack Overflow
Browsing all 9 articles
Browse latest View live

Comment by Nirbhay Shah on Selenium Front End Using JSP

My Aim is to trigger the selenium script using a custom built front end through which I can pass certain variables like username password etc @karthick, can you suggest any other way to achieve this...

View Article



Answer by Nirbhay Shah for Issue with PHP Select SQL statement

You are using CURRENT_TIMESTAMP which provides a timestamp and student_grad_date is just a date. You can use CURDATE() instead, which also provide you just the date

View Article

Answer by Nirbhay Shah for Warning: mysqli_connect(): (HY000/1045): Access...

Go to your PHPmyadmin and run the below query in Mysql DB GRANT ALL PRIVILEGES ON yourdbname.tablename TO 'user'@'localhost'; After that run the query, FLUSH PRIVILEGES You can also try GRANT USAGE ON...

View Article

Answer by Nirbhay Shah for Why is docker image eating up my disk space that...

Docker prune by default does not remove volumes, you can try something like docker system prune --volume

View Article

Answer by Nirbhay Shah for Can't inject custom repository

I am not sure if this is exactly relevant, but one possible approach of using custom repositories is as below : 1. I create a custom repository class as below @Injectable()...

View Article


Answer by Nirbhay Shah for mysql is not working on AWS linux instance?

Can you connect to mysql using the command line in the instance using the command: mysql -u DBUSER -h DBSERVERNAME_OR_IP -p Or mysql -u user_name -h mysql_server_ip_address_here -p db_name_here

View Article

Answer by Nirbhay Shah for In mysql simple join query takes long time for...

As mentioned by @Alberto Moro please share the explain. Also you join query can be slow because of numerous reasons like the joins that you are implementing may not be on keys. When you right Explain...

View Article

Answer by Nirbhay Shah for MySQL: What does means "escape '!'" on query

The ESCAPE keyword is used to escape pattern matching characters such as the (%) percentage and underscore (_) if they form part of the data. Let's suppose that we want to check for the string "67%" we...

View Article


Answer by Nirbhay Shah for docker containers with mac-vlan network show wrong...

You should not use static IP's in docker unless you are working with something that allows routing from outside to the inside container, like in you're case macvlan. DNS is already there for service...

View Article

Browsing all 9 articles
Browse latest View live




Latest Images