Search:

Type: Posts; User: shailesh.sutar; Keyword(s):

Search: Search took 0.02 seconds.

  1. Try this

    SqlMapconfig File :

    <?xml version="1.0" encoding="UTF-8" ?>

    <!DOCTYPE sqlMapConfig
    PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
    ...
  2. Which database are u using? I am using Sql...

    Which database are u using?
    I am using Sql Server so + operator works fine to Concatenate strings.

    May be this link will help you:...
  3. To use the LIKE clause in the query... Try this...

    To use the LIKE clause in the query...
    Try this :


    select * from LC.TEMP_EMP WHERE NAME LIKE '%'+ #NAME# +'%'

    Working for my test application
  4. Replies
    3
    Views
    825

    :) IBatis is really very good if you like to...

    :)
    IBatis is really very good if you like to write ur own SQL.
    Even performance is very close to JDBC.
  5. Replies
    3
    Views
    825

    search for how to pass parameters to select ...

    search for how to pass parameters to select

    Try using parameterMap to query as


    <parameterMap id="identifierParam" class="map" >
    <parameter property="identifier" jdbcType="VARCHAR"...
  6. Replies
    1
    Views
    1,054

    DWR not working in IE 5.0

    I tried Ajax Web Application using DWR.
    It works fine in IE6.0, Mozilla 2.0, Opera 9.10.
    But in IE 5.0, It gives javascript error (EvalError is undefined).

    I searched google and found that in...
  7. Firstly ,I should have ask this question in...

    Firstly ,I should have ask this question in iBatis forum. But i thought i will also get some clue from here so i put it here.
    Ok.
    I got solution for it.
    I should use update function instead of...
  8. Problem using iBatis and transaction management inside Stored procedure

    I am using stored procedure for DB related stuff using iBATIS. (SQL server 2000).
    When i call procedure in which i do some DB updation stuff, it works fine.
    ie.

    ...
  9. Sorry for late reply. I was going through iBatis...

    Sorry for late reply.
    I was going through iBatis and you are correct that iBatis is better dealing with stored procedures compared to hibernate.
    I got one link where performance of different...
  10. Thanks

    I am going through iBATIS data mapper docs.
    Thanks for hibernate related link...
    We'll do some sample applications to study performance..
    Thanks for suggestion....
  11. Performane:JDBC, Hibernate or Spring for Stored procedure

    We are using stored procedures for all database related stuff.
    There are around 150 tables.
    Security and Performance is the major concern for our project as it is related to online transactions....
  12. Replies
    2
    Views
    1,468

    Simple AOP web Application..

    I want to create simple web application using Spring AOP for logging...
    can anyone give me link or guide me how to configure bean for AOP in spring...
    I want bean configuration for Spring AOP....
  13. Spring : foreign characters in message.properties file

    My reply is related to spring....
    According to me there are 2 options to use foreign characters in message.properties in Spring
    1. By using hardcoded character values in properties files like...
  14. Nice to see that my solution was right

    It was my first post.
    Wow. it works.....
    Thanks Karl........
  15. Just check parameter declaration and mapping with procedure params

    I am also new to spring but i have tried calling stored procedure using spring and SQL-Server 2000...
    I am not sure but may be this is helpful to you.....

    u r declaring following parameters.......
Results 1 to 15 of 15