Quantcast
Channel: User ajay verma - Stack Overflow
Browsing all 13 articles
Browse latest View live

Comment by ajay verma on select count(*) from table of mysql in php

After 5.x version this query will not work just replace mysql with mysqli to make it work.

View Article



Comment by ajay verma on Websphere with Oracle DB deployment Error NosuchMethod

@Andy Thanks for the help I had removed the annotation 3.5.6 but it gave me new error. Please check the above error.

View Article

Comment by ajay verma on Websphere with Oracle DB deployment Error NosuchMethod

By referring shared library the problem got solved but it is not able to find the path of file which is in my project i have attached the image for the reference.

View Article

Comment by ajay verma on unable to launch springboot application deployed on...

@bphilipnyc When i request localhost:9080 it gives SRVE0255E: A WebGroup/Virtual Host to handle 127.0.0.1:9080 has not been defined.

View Article

Image may be NSFW.
Clik here to view.

Answer by ajay verma for wrong encoding When adding audio file to android studio

Here is the image - just remove the *.mp3 from the text files by clicking on '-' icon.

View Article


Answer by ajay verma for Convert int to char in java

Whenever you type cast integer to char it will return the ascii value of that int (once go through the ascii table for better understanding) int a=68; char b=(char)a; System.out.println(b);//it will...

View Article

Answer by ajay verma for How to launch 'telnet' console in Android Studio...

If you are windows user follow this stepgo to control panelgo to programs and featuresclick on "turn windows feature on or off" a prompt box will be appear()mark the checkbox of Telnet Clientopen...

View Article

Answer by ajay verma for Why i cannot quit this while loop(java)?

if(title.trim().equals("")) { System.out.println("Please do not enter an empty title!"); flag=flase; }and here also if(title.equals(m.getTitle().trim())) {System.out.println("Title already exists!");...

View Article


Answer by ajay verma for Error TS2315: Type 'ElementRef' is not generic...

This error occurs when there is a mismatch in your angular version and material version.To see the error go to package.json file where you can find the angular version and the material...

View Article


Answer by ajay verma for When are static variables initialized?

The static variable can be intialize in the following three ways as follow choose any one you likeyou can intialize it at the time of declarationor you can do by making static block eg: static { //...

View Article

Answer by ajay verma for Selecting the last child of an element in JavaScript

Lets consider an example<ul ><li>Coffee</li><li>Tea</li><li>Milk</li></ul>To get the last child of the list you can simply make use of...

View Article

Answer by ajay verma for querySelector and querySelectorAll vs...

The main difference between querySelector and getlementbyID(Claassname,Tagname etc) is if there is more than one elements which satifies the condition querySelector will return only one output whereas...

View Article

Answer by ajay verma for How do you select from mysql where last character in...

SELECT *FROM TableWHERE RIGHT(Column_name, 1) IN ('x') if you want to match two character just replace 1 by 2.In general:RIGHT(COLUMN_NAME, NO_OF_CHARACTER_YOU WANT_TO_MATCH_FROM_LAST)And if you want...

View Article

Browsing all 13 articles
Browse latest View live




Latest Images