Hi,

Which version of Sequoia are you using exactly?

3.0-beta2

Your application uses Statement.execute("select ...") instead of Statement.executeQuery("select ..."). The controller tries to check the content of the SQL statement to see if it is a plain SELECT and then tries to optimize it to execute it on a single backend. For some reason (that I don't explain yet), the statement is not detected as a plain SELECT statement and thus it is broadcast (because of Statement.execute()).

One solution is to use executeQuery() instead execute().

Unfortunately, I have no control over that :-(

               Julius

--
########################################################################
# E-mail: [EMAIL PROTECTED]                                       #
# WWW: http://cern.ch/hrivnac                                          #
# My Space: http://www.myspace.com/juliushrivnac                       #
# Lide.cz: http://www.lide.cz/Julius.Hrivnac                           #
# S-mail: LAL, BP 34, F - 91898 Orsay cedex, France                    #
# phone: (F)-(0)1-64-46-82-51; private: (F)-(0)8-71-19-31-70           #
# mobil: (F)-622-741-151; (CZ)-607-918-415                             #
# ICQ: 10804323                                                        #
# AIM: jhrivnac                                                        #
# Skype: jhrivnac                                                      #
# Jabber: JuliusHrivnac                                                #
########################################################################

_______________________________________________
Sequoia mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/sequoia

Reply via email to