Re: Problem with Character Encoding

2010-03-12 Thread John Seer
for example if I have long dash, I will see "?" if I have é I will see replacement character. I see it in debug/sysout/jsp Larry Meadors wrote: > > Where are you seeing the "?" characters? > > On Fri, Mar 12, 2010 at 3:14 PM, John Seer wrote: >>

Re: Problem with Character Encoding

2010-03-12 Thread John Seer
>> >> I think that it happens that way by default though. >> >> Where are you seeing the "?" characters? >> >> Larry >> >> >> On Fri, Mar 5, 2010 at 2:44 PM, John Seer wrote: >> > >> > Hello, >> > >&g

Problem with Character Encoding

2010-03-05 Thread John Seer
Hello, We am currently using Oracle DB with default utf-8 encoding, we have two application one is using hibernate other one ibatis If I am running hibernate on windows or on linux I am seeing every character which is returned is encoded correctly. But when I am using ibatis I can see that some

Scrollable result Set

2009-09-29 Thread John Seer
Hello, I am little bit confused in how Scrollable results are working for ibatis, the row num we pass in, is it going to fetch full object or it will not fetch some part of it? Regards -- View this message in context: http://www.nabble.com/Scrollable-result-Set-tp25672496p25672496.html Sent f

Re: Pagination by objects

2009-07-27 Thread John Seer
0, then generate an IN clause and add > it > to the join. > > You could do the same with iBATIS, but you have to do it manually. > > Clinton > > On Mon, Jul 27, 2009 at 12:00 PM, John Seer wrote: > >> >> >>You could start with the documentation...or

Re: Pagination by objects

2009-07-27 Thread John Seer
0, then generate an IN clause and add > it > to the join. > > You could do the same with iBATIS, but you have to do it manually. > > Clinton > > On Mon, Jul 27, 2009 at 12:00 PM, John Seer wrote: > >> >> >>You could start with the documentation...or

Re: Pagination by objects

2009-07-27 Thread John Seer
The heck I am talking about is that this shit doesn't work for me Larry Meadors wrote: > > I'll put this as nicely as I can: What the heck are you talking about? > > Larry > > - > To unsubscribe, e-mail: user-java-unsubscr..

Re: Pagination by objects

2009-07-27 Thread John Seer
could start with the documentation...or even just your IDE code > completion... :-) > > Look up the queryForList method signatures.. > > Clinton > > On Fri, Jul 24, 2009 at 4:39 PM, John Seer wrote: > >> >> Hello, >> >> I am using in one of my

Pagination by objects

2009-07-24 Thread John Seer
Hello, I am using in one of my projects ibatis and have a problem with pagination. For example I want to select 100 objects at a time and skip first 100 of them. I didn't find any good way of doing it and nothing exciting about scrolling too. Any suggestion how to achieve/solve my problem? T

Linked insterts

2009-07-10 Thread John Seer
Hello, I have task for that I need to link couple insert statements together, and each one must execute after the next one is done. Can I do it directly in mapping or I need to use java to achieve it . Example What I need to do call insert id1 in java and it will trigger whole chain of in