Hi all,
in my ibatis query , ihave to use both mm/dd/ and mm/dd/yy . can you
please tell me how can we do that.
i have one question right now in my ibatis query i am using mm/dd/
format if i have given date in that format like 02/03/2009 i am getting
results , if i changed the date for
Hi to all,
select * from Someone where name like 'a%'
this is in oracel
if i run this query i am getting only 3 records
for this query in ibatis
Select * from someone where UPPER(NAME) LIKE '%' ||
UPPER(#name#)||'%'
if i run this query i am getting all the result
HelpMePlz wrote:
>
> hi to all
>
> i want one help in my requirement in ibatis query i have to use <= but is
> showing error my same code like this
>
> TO_DATE(NnsManageGroupsPickerV.CREATION_DATE,
> 'MM/DD/')
>
hi to all
i want one help in my requirement in ibatis query i have to use <= but is
showing error my same code like this
TO_DATE(NnsManageGroupsPickerV.CREATION_DATE,
'MM/DD/')
>= TO_DATE(#createFromDt#,'MM/DD/')
Hi to All
public List getBookDetails() {
BooksActionForm form = new BooksActionForm();
System.out.print("the ibatis program1 ");
List list = new ArrayList();
try {
Hi to All
i am getting this error
Attribute "type" must be declared for element type "selectKey".
my sqlMap .xml code is
SELECT ADMINTEST.NEXTVAL AS bookid FROM DUAL
insert into IBATISADMINTEST (BOOKID,BOOKNAME , AUTHORNAME ,
AVAILABLEBOOKS,PUBLISHER,CATEGORY)
values(#bookid#,#b
Hi to All
public void updateInfo(IbatisBooksForm form) {
int i = 0;
try {
int bookid=form.getPrimaryKey();
HashMap map = new HashMap();
public IbatisBooksForm retriveBookDetails(IbatisBooksForm form1) {
IbatisBooksForm form2 =new IbatisBooksForm();
int bookid=form1.getPrimaryKey();