Nidheesh Krishna

Ranch Hand
+ Follow
since Apr 18, 2016
Nidheesh likes ...
MySQL Database Spring Java
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
12
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nidheesh Krishna

Helllo,
I have some German addresses shown below,

Gewerbegebiet Ziesegrund 17440 Hohendorf bei Wolgast
Sonnenwiechser Str. 42 1/2 83052 Bruckmühl, Mangfall
Am Hamberg 4/1 79400 Kandern
Brüggerfeld 14 + 20 29574 Ebstorf
Straße des 17. Juni 18+19 88485 Berlin
Hochstr. 19 88045 Friedrichshafen
Straße des 17. Juni 23-25 a 12345 Berlin-Mitte
Domerschulstrasse 234 34070 Verlin
keltenstr. 16 77971 Kippenheim

I wrote a regular expression to split the address into "Street name", "Street Number", "Postal code" and "City"





But this not giving a solution.

Can anyone please help me??

Thanks in advance
5 years ago
Hello,
I have a text file with addresses in it. I need to extract the address blocks separately. How can i archive this using java codes.



Thanks in advance.
5 years ago
Hello,

How to get full file path in bean part when using primefaces fileUpload ?

getFile().getFileName() of FileUploadEvent returns the filename only

Thanks in advance
5 years ago
JSF

Hello All,
This is the qury i needed.
select n.namefield , a.addessfield  from NameTable a LEFT OUTER JOIN AddressTable b on a.userid=b.userid and a.company=b.company;



This is the mapping

NameTable entity
------------



AddressTable entity
----------------




But the query i got is,

SELECT t0.namefield,t1.addessfield FROM name_table t0 LEFT OUTER JOIN address_table t2 ON ((t2.company = t0.company) AND (t2.userid = t0.userid)), address_table t1

Can anyone please help me.
Thanks in advance
Hello Campbell Ritchie,
This is not my actual code. I just shown an example
6 years ago
Hello,
I have a code like this,



While checking this code in Sonar, it shows to reduce the if--else stattements.
How can i achieve this?
6 years ago

Nidheesh Krishna wrote:Hello,
I am trying to insert current date& time to Oracle database with format "yyyy-mm-dd hh:mm:ss".
My database datatype is "DATE".



This is the code i used.
But in database the value stored in the format "yyyy-mm-dd 00:00:00". I want time also. How can i solve this?
6 years ago
Hello,
I am trying to insert current date& time to Oracle database with format "yyyy-mm-dd hh:mm:ss".
My database datatype is "DATE".
6 years ago
Hello
I want to convert a  existing MSSQL database to unicode compatible. How can i perform this?
How to call a java method defined in jsp inside a javascript method defined in same jsp page?
7 years ago
JSP
Geeting above exception while sending message using Axis. How to solve this problem?
7 years ago
How to write junit for the statement

where messageMap is a TreeMap. I wrote as follows,

But this code not working.
7 years ago
Hello,
How can i execute MSSQL procedure codes through java?

This procedure codes are available in a file. I want to read the file and execute this procedure codes.
7 years ago
While working with mssql and java, i got this error "com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name 'trace_xe_action_map'."
why this happening?
Currently i used,

While trying to delete a MSSQL database thorugh java program, i got an error as follows
"Exception in thread "main" com.microsoft.sqlserver.jdbc.SQLServerException: Cannot drop the database 'AtlasDB3', because it does not exist or you do not have permission."
How can i solve this error?