0 / 0 / 0
Регистрация: 11.05.2008
Сообщений: 10
|
|
1 | |
ADODB.Connection error The operation requested by the application is not allowed if the object is closed30.06.2008, 22:34. Показов 1141. Ответов 2
Метки нет Все метки)
(
Hallo to all,
I gave this errors //ADODB.Connection error '800a0e78' //The operation requested by the application is not allowed if the object is closed. May be, can somebody say what is a problem. Thanks
0
|
|
30.06.2008, 22:34 | |
Ответы с готовыми решениями:
2
Ошибка ADODB.Recordset error '800a0e78' The operation requested by the application is not allowed if the object is closed. ошибка: 'Run-time error 3705. The operation requested by the application is not allowed if the object is open.' Странная проблема с delete: ADODB.Recordset (0x800A0E78) Operation is not allowed when the object is closed Не работает OpenSchema:ADODB.Connection (0x800A0CB3) Object or provider is not capable of performing requested operation. |
Spika
|
|
30.06.2008, 23:50 | 2 |
Show your code.
|
0 / 0 / 0
Регистрация: 11.05.2008
Сообщений: 10
|
|
01.07.2008, 14:44 [ТС] | 3 |
Here is
I get always by 50 or more executions (!!!!) the result 'Keine Überschrift in der Datenbank' It means that the objRS by 50 or more executions is empty. If I examine the objConn.State I'll get that the Connection is closed. Why does the programm close the connection by 50 or more execution(!!!!) ???? // function Translate_RS(Tabelle,Uberschrift) on error resume next if open() then set objRS = Server.CreateObject('ADODB.RecordSet') objRS.open TranslateSQL(Tabelle,PageDefinition(Sprache),Ubers chrift), objConn, adOpenStatic if objRS.BOF and objRS.EOF then if objConn.State=adStateOpen then else response.write objRS.fields(PageDefinition(Sprache)) end if Translate_RS='Keine Überschrift in der Datenbank' else Translate_RS=objRS.fields(PageDefinition(Sprache)) if Translate_RS='N/A' then RS_Close(objRS) set objRS = Server.CreateObject('ADODB.RecordSet') objRS.open TranslateSQL(Tabelle,'en',Uberschrift), objConn, adOpenStatic Translate_RS=objRS.fields('en') end if end if end if if Err.Number <> 0 then for each errorfield in objConnection.Errors echo '<b>Fehler</b>: ' & errorfield.Description & ' (' & hex(errorfield.Number) & ') ' echo '<b>Quelle</b>: ' & errorfield.Source & ' ' echo '<b>Quelle</b>: ' & errorfield.NativeError & ' ' echo '<b>String</b>: <code>' & TranslateSQL(Tabelle,PageDefinition(Sprache),Ubers chrift) & '</code><p>' next end if RS_Close(objRS) end function //
0
|
01.07.2008, 14:44 | |
Помогаю со студенческими работами здесь
3
ADODB.Field error '800a0bcd' Either BOF or EOF is True, or the current record has been deleted; the operation requested by the application requires Ошибка ADODB.Field error '800a0bcd' Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current recor ADODB.Field error '80020009' Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. Искать еще темы с ответами Или воспользуйтесь поиском по форуму: |