Re: problem with insert

2009-07-15 Thread Larry Meadors
[mailto:kikna...@gmail.com] Sent: Tuesday, July 14, 2009 10:13 PM To: user-java@ibatis.apache.org Subject: Re: problem with insert Try this thread: http://www.mail-archive.com/user-java@ibatis.apache.org/msg13497.html Seems similar problem was solved there GL On Tue, Jul 14, 2009 at 11:00

RE: problem with insert

2009-07-15 Thread Odelya YomTov
One with a m p; and one with -Original Message- From: Larry Meadors [mailto:larry.mead...@gmail.com] Sent: Wednesday, July 15, 2009 4:20 PM To: user-java@ibatis.apache.org Subject: Re: problem with insert It's early but those look identical to me. Larry On 7/15/09, Odelya YomTov

problem with insert

2009-07-14 Thread Odelya YomTov
Hi! I am trying to insert data in Hebrew into the database The table is set to utf-8. But in the log file I see: DEBUG [http-12091-Processor24] - Created connection 27901603. DEBUG [http-12091-Processor24] - {conn-10} Connection DEBUG [http-12091-Processor24] - {pstm-11}

Re: problem with insert

2009-07-14 Thread Nicholoz Koka Kiknadze
Is it possible that you just did not set your log file encoding? Kind of log4j.appender.someappender.Encoding=UTF-8 On Tue, Jul 14, 2009 at 8:40 PM, Odelya YomTov ode...@jpost.com wrote: Hi! I am trying to insert data in Hebrew into the database The table is set to utf-8. But in the

RE: problem with insert

2009-07-14 Thread Odelya YomTov
Hi! It's not the problem with the log file encoding. It's something is the connection between ibatis and mysql From: Nicholoz Koka Kiknadze [mailto:kikna...@gmail.com] Sent: Tuesday, July 14, 2009 9:52 PM To: user-java@ibatis.apache.org Subject: Re: problem with insert Is it possible

Re: problem with insert

2009-07-14 Thread Chris O'Connell
] *Sent:* Tuesday, July 14, 2009 9:52 PM *To:* user-java@ibatis.apache.org *Subject:* Re: problem with insert Is it possible that you just did not set your log file encoding? Kind of log4j.appender.someappender.Encoding=UTF-8 On Tue, Jul 14, 2009 at 8:40 PM, Odelya YomTov ode

Re: problem with insert

2009-07-14 Thread Nicholoz Koka Kiknadze
between ibatis and mysql *From:* Nicholoz Koka Kiknadze [mailto:kikna...@gmail.com] *Sent:* Tuesday, July 14, 2009 9:52 PM *To:* user-java@ibatis.apache.org *Subject:* Re: problem with insert Is it possible that you just did not set your log file encoding? Kind

Problem with insert statement

2008-11-13 Thread tobimat80
Hello, I have a problem with an insert-operation. I have the following java class: public class MosObj extends MosMessage { private String objID; ... // just properties private String description; private ListMosExternalMetadata mosExternalMetadata

Re: Problem Timestamp insert and retriev

2008-03-18 Thread dimitriBarzagli
by IBatis framework to manage database. I have a problem about insert and retrieve Timestamp value. I use Mysql 5.0 for database and I create a table USER with TIMESTAMP type for the DATE_OF_BIRD element. I create Java Bean User with dateOfBird member by java.sql.Timestamp. When I try to insert

RE: Problem Timestamp insert and retriev

2008-03-18 Thread Niels Beekman
@ibatis.apache.org Subject: Re: Problem Timestamp insert and retriev Hi Ryan, thank you for response. I modified the column definition in database and type definition in Objectbean. Actually I have another problem: I write this part of code to test the modifiy: ... SimpleDateFormat sf = new

RE: Problem Timestamp insert and retriev

2008-03-18 Thread dimitriBarzagli
... Niels -Original Message- From: dimitriBarzagli [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2008 3:39 PM To: user-java@ibatis.apache.org Subject: Re: Problem Timestamp insert and retriev Hi Ryan, thank you for response. I modified the column definition in database and type

Re: Problem Timestamp insert and retriev

2008-03-18 Thread Ryan Shelley
at 1:00 AM, dimitriBarzagli [EMAIL PROTECTED] wrote: Hi, I'm developing a web application by IBatis framework to manage database. I have a problem about insert and retrieve Timestamp value. I use Mysql 5.0 for database and I create a table USER with TIMESTAMP type

Problem Timestamp insert and retriev

2008-03-17 Thread dimitriBarzagli
Hi, I'm developing a web application by IBatis framework to manage database. I have a problem about insert and retrieve Timestamp value. I use Mysql 5.0 for database and I create a table USER with TIMESTAMP type for the DATE_OF_BIRD element. I create Java Bean User with dateOfBird member

Re: Problem with Insert

2006-02-25 Thread Ben Munat
Huh. And here I thought the RPG contractor on the project I've been working on was just a crazy old mainframe guy... So, life without transactions is just par for the course on the AS400? Seems whacked to me.. b Jeff Butler wrote: I think that's a good lead. Most AS/400 tables are not

Re: Problem with Insert

2006-02-25 Thread Ted Schrader
At risk of bending the thread off topic a bit, here are my two cents: I've run into the same situation at my workplace, as well. Fortunately, our web applications are mostly reporting or entail very simple transactions. The way I understand it, the 400 is such a different animal that RPG

Re: Problem with Insert

2006-02-25 Thread Ben Munat
Heh, my RPG guy (who I've never met... all my stories are through the project lead) is fond of saying I can do that, but it'll dim the lights. It's become quite the nice little catch phrase around the office. :-) b Ted Schrader wrote: At risk of bending the thread off topic a bit, here are

Problem with Insert

2006-02-24 Thread Davis Chapman
I'm running into a perplexing problem. I'm trying to replace a homegrown DOA with iBatis in an application running against DB2 on an AS/400. All of my selects are running fine. But when I try to run an Insert statement, I get the following error: Caused by: java.sql.SQLException: [SQL7008] ECEP

Re: Problem with Insert

2006-02-24 Thread Eric Blue
Hi Davis, Do you have autocommit enabled by default? Trying Googleing 'db2 not valid for operation'. I noticed quite a few references to an error message like this due to journaling/commit/rollback problems.On 2/24/06, Davis Chapman [EMAIL PROTECTED] wrote:I'm running into a perplexing problem.