Ask a Question related to MySQL, Design and Development.
-
Rob #1
Can not open resultset
Dear all,
could someone help me in such problem:
in a loop a make a lot of (ca.1500) inserts to table1. I the some time I
make select query on another table and sometimes (not allways) during this
query I get an error: " Can not open resultset". How it is possible ? This
program is written in Delphi with components Zeos.
best regards
Rob
Rob Guest
-
How do I get MySQL to NOT sort my resultset?
Hi All The following query works, but MySQL sorts the results set: SELECT STRINGTEXT FROM WEBSTRINGS WHERE GUI=0 AND LANGID='GB' AND TOKENID IN... -
Resultset Comparison
Hi, I have two resultsets from 2 different datasource. Say DSN1 and DSN2. I need to Compare and display if this condition is... -
ResultSet is not updatable.
hi, i am using db2 v8.1 udb fix pack 2 on NT. db2jcc.jar is the jdbc driver we use, it is type 4. the url is ... -
resultset.close()
hi, i have a sql query be executed up to thousand times, the only change is the where clause value change, so each time i need to create a... -
how to overcome ResultSet limitations in DB2?
hi, we are starting to test our application with ibm's db2, but one of the first negative things we have encountered are the limitations of the... -
onedbguru@firstdbasource.com #2
Re: Can not open resultset
what language are you using - SQL or PHP or ... or ...
Your system apparently does not have the memory resources or the table
you are querying is locked at the time of the query...
commit often.
It is possible because you are using brain-dead wysiwyg tools...
onedbguru@firstdbasource.com Guest
-
ramiro #3
Re: Can not open resultset
This is an old post but could be usefull for others,
if you have acces to the source code, compile once again, but first check it:
Probable a SQL query is done but the query (TzQuery )used for it is disabled at design time. But at runtime is enabled, the component tries to get a result, here the error appeards.
Comment it and try again
datos.DataModule1.radios.SQL.Text:='INSERT INTO transacciones( dni_receptor) values(''ABC'')';
//Tzquery1.Active:=true;
datos.DataModule1.sql_gen.ExecSQL;
for doing the query is not required that query is active.
www.cromosoft.comramiro Guest



Reply With Quote

