What (the hell) is SQL Exception called Function sequence error?

...doing in a code like this:
ResultSet friends=...executeQuery...
while (friends.next())
log.append(friends.getString("sendergsm"));
somewhere in between that loop, or sometimes the loop runs out fine, and sometimes it throws SQLException called General Error. Not guite normal...

Thank you for replying... that must be agains some of the policies of the sun, to make methods that may be called normally, but may cause an error.
Anyway, this is my first database application. The number of problems I've had in few days is unbelivable. I wonder does it load the drivers from disk or something everytime it reads one record from database. I mean when I did the above query, the table had about 10 entries (the program showed 5 to 10 before function sequense error) and displaying each record to TextArea took over second. (In paradox (The dosversion) this would have taken less than a second).
And paradox tables doesn't work at all because it raises exception: Table isn't expected format. If I set paradox 4.0 drivers and put paradox 4.0 tables, you would guess that the format would be expected. And you cannot create paradox tables with SQL. Now I need to use access databases. How can database containing 60 records be 500kb:s? When it will contain 50000 new records every day, i guess I'll be in problem. Each tranaction (say 5 simple queries) taking minutes... heelp meee!!

Similar Messages

  • SQLException [Microsoft][ODBC SQL Server Driver] Function sequence error

    I get this message when trying to write to a column of type 'IMAGE' on SQL Server 2000 when the size of the file I am trying to write is 0.
    PreparedStatement ps = con.prepareStatement( "UPDATE " + dbSchema + "File set filename = ?, filetype = ?, filedata=? WHERE FileId= ?" );
                          ps.setString(1, fileName);
                          ps.setString(2, fileType);
                          fis = new FileInputStream( fileDataInput );
                   ps.setBinaryStream( 3, fis, (int)fileDataInput.length() );
                          ps.setInt(4, fileID);
                          ps.executeUpdate();
                          ps.close();
                          fis.close();
                          The Exception is thrown on ps.executeUpdate(). This only occurs when I try to save a file with a size of 0 bytes. I know this situation occuring in production is unlikely but I want to code for it anyway.
    Any suggestions?
    Thanks
    Al

    It took me a while to see the obvious. I put a condition on the SQL statement. If the file size was 0 then I didnt include the binary data in the update.

  • Running SQL Procedure with dg4msql errors: Function sequence error HY010

    I am trying to execute a stored procedure on a SQL database and get the error Function sequence error HY010.
    A simple query on a table returns teh expected result.
    I have a single Win2008R2 server with MSSQL Express 2008 and Oracle 11gR2 (32bit not 64bit version of Oracle)
    Below is the gateway init, listener and tnsnames files and the query I am trying to run:
    -- initORIONWASP.ora --
    HS_FDS_CONNECT_INFO=INGRDB//waspForGIS
    HS_FDS_TRACE_LEVEL=OFF
    HS_FDS_RECOVERY_ACCOUNT=RECOVER
    HS_FDS_RECOVERY_PWD=RECOVER
    HS_CALL_NAME=dbo.spTest;dbo.spQueryAsset;dbo.spQueryAssetDetails
    HS_FDS_PROC_IS_FUNC=TRUE
    HS_FDS_RESULTSET_SUPPORT=TRUE
    -- Listener.ora -- (partial)
    (SID_DESC =
    (SID_NAME = ORIONWASP)
    (ORACLE_HOME = C:\Oracle\product\11.2.0\dbhome_1)
    (PROGRAM=dg4msql)
    -- tnsnames.ora -- (partial)
    ORIONWASP =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=INGRDB)(PORT=1521))
    (CONNECT_DATA=(SID=ORIONWASP))
    (HS=OK)
    -- Simple Query --
    Running select "Asset_ID" from asset@ORIONWASP; returns the correct result
    Running select * from sys.procedures@ORIONWASP; returns a list of procedures including the procedure I want to run
    -- This pl/sql block returns the error ******* identifier 'spTest@ORIONWASP' must be declared *******
    declare
    begin
    "spTest"@ORIONWASP;
    end;
    -- This passthrough pl/sql block returns ******** [Oracle][ODBC SQL Server Driver]Function sequence error {HY010} ********
    DECLARE
    CRS BINARY_INTEGER;
    RET BINARY_INTEGER;
    v_COL1 VARCHAR2(50);
    v_COL2 VARCHAR2(50);
    BEGIN
    CRS := DBMS_HS_PASSTHROUGH.OPEN_CURSOR@ORIONWASP;
    DBMS_HS_PASSTHROUGH.PARSE@ORIONWASP(CRS, 'exec spTest');
    BEGIN
    RET := 0;
    WHILE (TRUE)
    LOOP
    ret := DBMS_HS_PASSTHROUGH.FETCH_ROW@ORIONWASP(CRS, FALSE);
    DBMS_HS_PASSTHROUGH.GET_VALUE@ORIONWASP(CRS, 1, v_COL1);
    DBMS_HS_PASSTHROUGH.GET_VALUE@ORIONWASP(CRS, 2, v_COL2);
    DBMS_OUTPUT.PUT_Line('Col1:'||v_COL1||' Col2:'||v_COL2);
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    BEGIN
    DBMS_OUTPUT.PUT_LINE('End of Fetch');
    DBMS_HS_PASSTHROUGH.CLOSE_CURSOR@ORIONWASP(CRS);
    END;
    END;
    END;
    /

    The gateway configuration file contains:
    HS_FDS_PROC_IS_FUNC=TRUE
    HS_FDS_RESULTSET_SUPPORT=TRUE
    This setting commonly causes problems and you need to set
    HS_FDS_PROC_IS_FUNC=TRUE
    HS_FDS_RESULTSET_SUPPORT=FALSE
    for normal procedure calls and
    HS_FDS_PROC_IS_FUNC=FALSE
    HS_FDS_RESULTSET_SUPPORT=TRUE
    when calling the procedure with ref cursors.
    There's a note in My Oracle Support that gives you examples how to call remote SQl Server procedures
         Note.197192.1 Different Methods How To Call MS SQL Server Procedures Using TG4MSQL - DG4MSQL
    and another one for the Sybase gateway but this code is similar for the SQL Server:
    Article-ID: Note 351400.1
    Title: How to Call a Remote Sybase Procedure Using TG4SYBS

  • Function Sequence Error -- After upgrading to Crystal Reports 2008

    Since we intergrated Crystal 2008 in our application, We are having the ODBC DRIVER ERROR "S1010, Function Sequence Error"
    The following steps reproduces the error.
    I open any crystal report(using my application) and close it.
    And then I try to close another dialog in my application.
    The destructor of that dialog has the DELETE FROM TMPRPT WHERE  etc... But actually the TMPRPT table is empty.
    But This Scenario in general, does not produce any error. Only after I open and close Crystal report, and when the TMPRPT table doesn't have any records, executing the above DELETE sql throws CDBException, Funciton Sequence Error.
    Is it because of the upgrade/mismatch of dlls? Can any one help how to work around this?
    Thanks.

    Hi Don,
    I would like to thank you for your helpful advice. your tips for odbc tracing really works.
    Just to simplify things, I have created a simple mfc dialog based application that opens a connection using CDatabase in the initdialog and closes the connection in the destructor(because that is how we do in our main large application). On the dialog i put a "Print" button and when i click it, I open a crystalreportform and fill the connectioninfo structure and then call SetDBLogonForReport(ConnectionInfo connectionInfo, ReportDocument reportDocument). on the Form_closed function, I close database connections  and close the report document.
    When I come back to mfc application I execute a Delete from table where 1 =0, basically any delete/update that return empty recordset and it throws function sequence error.
    BOOL CCrystalDemoDlgDlg::OnInitDialog()
         CDialog::OnInitDialog();
         ConnectDatabase() ;
         return TRUE;  // return TRUE  unless you set the focus to a control
    BOOL CCrystalDemoDlgDlg::ConnectDatabase()
         if ( m_Database.IsOpen() )
              m_Database.Close();
         // Process database open request.
         CString szConnection("DSN=CRYSTALTEST32;UID=DBA;PWD=picture");
                     !m_Database.OpenEx( szConnection, CDatabase::noOdbcDialog ) )
         return TRUE;
    BOOL CCrystalDemoDlgDlg::bExecuteSQL( CString SqlString )
                    if(m_Database.IsOpen())
         m_Database.ExecuteSQL( (LPCTSTR)SqlString );
         return TRUE;
    void CCrystalDemoDlgDlg::OnBnClickedBtnPrint()
         TRY
              bExecuteSQL(_T("DELETE FROM TMPRPT WHERE 1=0"));
              CrystalReportsForm ^ CRForm = gcnew CrystalReportsForm(gcnew System::String("ActvSumm1.rpt"));
              CRForm->ShowDialog();
              //CRForm->RunCrystalReports();
              delete CRForm;
              CRForm = nullptr;
              bExecuteSQL(_T("DELETE FROM TMPRPT WHERE 1=0"));
         CATCH(CDBException, e)
              AfxMessageBox( e->m_strError );
              return ;
         END_CATCH     
    the following is the code in crystalreports library
    namespace CR2008Library
        public partial class CrystalReportsForm : Form
            private ReportDocument _reportDocument;
            private string _reportFile = "C:\\Nomadic\\Report\\";
            public CrystalReportsForm(string reportFile)
                InitializeComponent();
                     _reportDocument = CreateReportDocument(reportFile);
            private ReportDocument CreateReportDocument(string reportFile)
                ReportDocument newDocument = new ReportDocument();
                _reportFile += reportFile;
                newDocument.Load(_reportFile);
                return newDocument;
            public void ConfigureCrystalReports()
                ConnectionInfo connectionInfo = new ConnectionInfo();
                connectionInfo.DatabaseName = "CRYSTALTEST";
                connectionInfo.UserID = "DBA";
                connectionInfo.Password = "picture";
                connectionInfo.ServerName = "CRYSTALTEST32";
                SetDBLogonForReport(connectionInfo, _reportDocument);
                crystalReportViewer.ReportSource = _reportDocument;
            private void SetDBLogonForReport(ConnectionInfo connectionInfo, ReportDocument reportDocument)
                Tables tables = reportDocument.Database.Tables;
                foreach (CrystalDecisions.CrystalReports.Engine.Table table in tables)
                    TableLogOnInfo tableLogonInfo = table.LogOnInfo;
                    tableLogonInfo.ConnectionInfo = connectionInfo;
                    table.ApplyLogOnInfo(tableLogonInfo);
            public void CrystalReportForm_Load(object sender, EventArgs e)
                ConfigureCrystalReports();
            private void CrystalReportsForm_FormClosed(object sender, FormClosedEventArgs e)
                DisposeCR();
            private void DisposeCR()
                // Clean up by closing and disposing of the ReportDocument object
                if (_reportDocument != null)
                    if (_reportDocument.Database.Tables.Count > 0)
                        Tables tables = _reportDocument.Database.Tables;
                        foreach (Table table in tables)
                            table.Dispose();
                    _reportDocument.Database.Dispose();
                    _reportDocument.Close();
                    _reportDocument.Dispose();
                _reportDocument = null;
    I have the log file which doesn't show any error in crystalreports library. I am giving some of the log file for your reference to see what's happening while exiting from crystal and executing the problem sql
    CrystalDemoDlg  16c8-e8c     EXIT  SQLFetch  with return code 0 (SQL_SUCCESS)
              HSTMT               00F41CC0
    CrystalDemoDlg  16c8-e8c     ENTER SQLFetch
              HSTMT               00F41CC0
    CrystalDemoDlg  16c8-e8c     EXIT  SQLFetch  with return code 100 (SQL_NO_DATA_FOUND)
              HSTMT               00F41CC0
    CrystalDemoDlg  16c8-e8c     ENTER SQLCloseCursor
              SQLHSTMT            00F41CC0
    CrystalDemoDlg  16c8-e8c     EXIT  SQLCloseCursor  with return code 0 (SQL_SUCCESS)
              SQLHSTMT            00F41CC0
    CrystalDemoDlg  16c8-e8c     ENTER SQLFreeHandle
              SQLSMALLINT                  3 <SQL_HANDLE_STMT>
              SQLHANDLE           00F41CC0
    CrystalDemoDlg  16c8-e8c     EXIT  SQLFreeHandle  with return code 0 (SQL_SUCCESS)
              SQLSMALLINT                  3 <SQL_HANDLE_STMT>
              SQLHANDLE           00F41CC0
    CrystalDemoDlg  16c8-e8c     ENTER SQLDisconnect
              HDBC                00F427A0
    CrystalDemoDlg  16c8-e8c     EXIT  SQLDisconnect  with return code 0 (SQL_SUCCESS)
              HDBC                00F427A0
    CrystalDemoDlg  16c8-e8c     ENTER SQLFreeHandle
              SQLSMALLINT                  2 <SQL_HANDLE_DBC>
              SQLHANDLE           00F427A0
    CrystalDemoDlg  16c8-e8c     EXIT  SQLFreeHandle  with return code 0 (SQL_SUCCESS)
              SQLSMALLINT                  2 <SQL_HANDLE_DBC>
              SQLHANDLE           00F427A0
    CrystalDemoDlg  16c8-e8c     ENTER SQLFreeHandle
              SQLSMALLINT                  1 <SQL_HANDLE_ENV>
              SQLHANDLE           00F42718
    CrystalDemoDlg  16c8-e8c     EXIT  SQLFreeHandle  with return code 0 (SQL_SUCCESS)
              SQLSMALLINT                  1 <SQL_HANDLE_ENV>
              SQLHANDLE           00F42718
    CrystalDemoDlg  16c8-a34     ENTER SQLAllocStmt
              HDBC                00F419A0
              HSTMT *             0012E2C4
    CrystalDemoDlg  16c8-a34     EXIT  SQLAllocStmt  with return code 0 (SQL_SUCCESS)
              HDBC                00F419A0
              HSTMT *             0x0012E2C4 ( 0x00f41cc0)
    CrystalDemoDlg  16c8-a34     ENTER SQLSetStmtOption
              HSTMT               00F41CC0
              UWORD                        0 <SQL_QUERY_TIMEOUT>
              SQLPOINTER          0x0000000F
    CrystalDemoDlg  16c8-a34     EXIT  SQLSetStmtOption  with return code 0 (SQL_SUCCESS)
              HSTMT               00F41CC0
              UWORD                        0 <SQL_QUERY_TIMEOUT>
              SQLPOINTER          0x0000000F (BADMEM)
    CrystalDemoDlg  16c8-a34     ENTER SQLExecDirectW
              HSTMT               00F41CC0
              WCHAR *             0x03A30458 [      -3] "DELETE FROM TMPRPT WHERE 1=0\ 0"
              SDWORD                    -3
    CrystalDemoDlg  16c8-a34     EXIT  SQLExecDirectW  with return code 100 (SQL_NO_DATA_FOUND)
              HSTMT               00F41CC0
              WCHAR *             0x03A30458 [      -3] "DELETE FROM TMPRPT WHERE 1=0\ 0"
              SDWORD                    -3
    CrystalDemoDlg  16c8-a34     ENTER SQLNumResultCols
              HSTMT               00F41CC0
              SWORD *             0x0012E2B8
    CrystalDemoDlg  16c8-a34     EXIT  SQLNumResultCols  with return code -1 (SQL_ERROR)
              HSTMT               00F41CC0
              SWORD *             0x0012E2B8
              DIAG [S1010] [Microsoft][ODBC Driver Manager] Function sequence error (0)
    CrystalDemoDlg  16c8-a34     ENTER SQLErrorW
              HENV                00F418D8
              HDBC                00F419A0
              HSTMT               00F41CC0
              WCHAR *             0x0012DE00 (NYI)
              SDWORD *            0x0012E224
              WCHAR *             0x0012DE20
              SWORD                      511
              SWORD *             0x0012DE14
    CrystalDemoDlg  16c8-a34     EXIT  SQLErrorW  with return code 0 (SQL_SUCCESS)
              HENV                00F418D8
              HDBC                00F419A0
              HSTMT               00F41CC0
              WCHAR *             0x0012DE00 (NYI)
              SDWORD *            0x0012E224 (0)
              WCHAR *             0x0012DE20 [      56] "[Microsoft][ODBC Driver Manager] Function sequence error"
              SWORD                      511
              SWORD *             0x0012DE14 (56)
    CrystalDemoDlg  16c8-a34     ENTER SQLErrorW
              HENV                00F418D8
              HDBC                00F419A0
              HSTMT               00F41CC0
              WCHAR *             0x0012DE00 (NYI)
              SDWORD *            0x0012E224
              WCHAR *             0x0012DE20
              SWORD                      511
              SWORD *             0x0012DE14
    I know that my post is too long, but i would like to give enough information for you to see what's happening. I use visual studio 2008 with crystal library 2008.
    Thanks,
    Lavanya.

  • What the hell went wro

    I have never had any problems with my Zen Xtra 30 gig. Turned on last night, nothing, no tracks nothing. Hooked it up to download the tracks again, nothing, the MP3 links up and shows it's coupled to the PC and will autosync. but when I try to down load, I get the error message
    Unable to create file, restart player and start again.
    I have tried this, resetting the player, uncouple and recouple but still the same problem.
    What the hells going on?
    Rob

    First of all, relax & don't say bad words on this forum
    Try to access Rescue Mode on Your player & perform the "Cleanup" function. This is the best thing to do in this situation. Don't worry, cleanup will not delete songs on your player if they still ali've. Go to the Caterina's thread at the very top of the thread list to figure out how to do that. Good luck

  • What the hell is windows 8

    I'm really stuck in Just WTF microsoft's just released windows i'm suffering this problem from 1 year now i'm really tired that what the hell is bill gates just released i just want to ask the hell bill gates that i expensed my precious money to buy new
    laptop with new hell fucking windows 8 but i didn't knew that the bill gates is just hell who is fucking my money and windows 8 is just the hell thing is the world which taken me far from reliable daily computing instead of effectively getting output from
    core i5 . I always face problem of disk 100% usage and the fuckin updates didn't just sought this problem out . What the fuck microsoft just released after the amazing windows 7 and now hell windows 8 without any solution of hell problems . I bought hp envy
    dv6 with windows 8 and just facing this problem from 1 year then claimed warrenty but they said this is okay but this is just hell problem with software of microsoft which has no warrenty i never expected such thing from bill gates 

    herevenku wrote:
    why the *** the messagin app is not able to send txt mesage to two or more receipants at a time, when i am able to send the same message to both of them seperately....as it is sending to each person properly,  its not prob with SIM/wifi/messaging center number or any other stuff, except for a bug in windows 8! what the hell is goin on ??? can some one please explain the reason for this kind of stuff?
    To send a text to multiple recipients you need to tap on the + symbol on the top right of the screen then tap the "Select" icon on the bottom bar. Your recipients list will now have a check box next to each name which you can use to select multiple recipients. When done just tap on the tick icon on the bottom.

  • Auto analayzer - what the hell???

    After i installed Premiere Elements 13 (together with elements organizer) the CPU load is at 50-100% and my System disk is spammed with 30GB of data - and still not finished!!!
    in the Task Manager i found a process called "Auto elements analyzer". What the hell is this there going on??? Adobe programms a process that
    - runs in the Background and is NOT stopped, when the Programs are closed!
    - produces tons of data
    - produces immense CPU load
    - has no Explanation for what it could or shoud do
    what the the hell is that? i am really 1mm from deinstalling this crap!!!

    PRE_help
    Thank you for entering this thread. While you are here, could you clear an important point at an appropriate time so as not to interfere with the good discussion that you are having with elenah at the present time.
    In the details for what you and elenah are exchanging, this has nothing to do with the Elements Organizer's AutoAnalzyer options. You can leave them on or off. What this has to do with is an inescapable process of Premiere Elements, that is, conforming audio files (cfa/pek) and conforming video files (mcdb). When you and elenah point to Edit Menu/Preferences/Media, you are pointing to the conformed video files.
    Now here is my question to better understand for all of us what happens when the user click Clean Now at that location.
    Set Media Cache Size
    Default 5 GB
    This is meaning to me
    a. The file size of the Media Cache Folder in Common Folder is going to be whatever results from the program automatically piling conformed video files (mcdb) files there, be it 1,  5, 50, or 500 GB or whatever.
    Cleaning up that pile up and stopping the pile up are different. We are talking user clean up here and not user being able to stop the conforming process.
    b. For project automatic monthly, the Clean Now is triggered to reduced that Media Cache file size to 5 GB according to the preference set.
    For user manual on demand, the Clean Now is triggered to reduced that Media Cache file size to 5 GB according to the preference set.
    At no time is that 5 GB set going to limit the program from piling up as much as it wants/needs to in that Media Cache Folder in the Common Folder for its required video conforming.
    Have I interpreted the above correctly or am I overlooking essential factors? In the above interpretation, I see no bug but rather the way the program is designed to deal with video file conforming. In elenah's case, I wonder where the Media Cache Folder video conforming files are tracing back to in the Elements Organizer or elsewhere to generate 50 GB of conformed video files.
    Thank you.
    ATR

  • Elements auto analyzer - what the hell???

    Hi,
    After i installed Premiere Elements (together with elements organizer) the CPU load is at 50-100% and my System disk is spammed with 30GB of data - and still not finished!!!
    in the Task Manager i found a process called "Auto elements analyzer". What the hell is this there going on??? Adobe programms a process that
    - runs in the Background and is NOT stopped, when the Programs are closed!
    - produces tons of data
    - produces immense CPU load
    - has no Explanation for what it could or shoud do
    i am really 1mm from deinstalling this crap!!!

    If you do a Google search for 'Photoshop Elements autoanalyzer', you'll find many answers including this link:
    FAQ: What is Auto-Analysis, or Why does Organizer freeze?
    and this one:
    The Elements 12 Auto Analyzer–Adobe’s Evil Undead | Barbara's Sort-of-Tech Blog
    You don't state your version of Elements, and that is important, since most of the tasks of the autoanalyzer have been removed from version 13.
    The autoanalyzer was mainly used by Premiere Elements users, so I would also ask in the dedicated forum:
    Premiere Elements

  • I have just purchased a subscription of Acrobat XI Pro, which I installed in my computer a long time ago, when I first tried it. Alas, I cannot open the application, which keeps asking me for a serial number I have not yet received. What the hell is going

    I have just purchased a subscription of Acrobat XI Pro, which I installed in my computer a long time ago, when I first tried it. Alas, I cannot open the application, which keeps asking me for a serial number I have not yet received. What the hell is going on?

    [discussion moved to Acrobat Installation & Update Issues forum.]

  • What the hell bt

    Why are bt not sorting out the exchanges In THE MIDDLE of big towns cities like ipswich who cant even get up to 8meg "just about 1 meg here" And upgrading everyone to fibre.
    I live on one side of ipswich connected to a exchange that is 2km away when there are 2 exchanges within 700 metres of me which are both enabled for fibre what is the bloody logic in this.
    What the hell!

    Not sure where you got the info on Fibre from, I don't think any of the Ipswich exchanges have been enabled for fibre and last time I checked none are even in the list of planned upgrades yet.
    I think one or two have been upgraded for the upto 20M (ADSL2+) broadband, though most are in the list to be done during the next 12 months.
    From what you've said in other threads I'm guessing you are in one of the blocks of new flats near to the train station. I'd suspect the problem with connecting that area to the central Ipswich exchange is the River Orwell. To get across the river BT (Openreach) would have very limited options, the usual route being in the ducts in one of the bridges. The number of new lines needed for the level of development around you means the cables will be large and it is quite likely that there simply wasn't the capacity in the ducts to get the cable over the river.
    If the ducts were full then Openreach would have had to look at other options on how to get service from an exchange, a tunnel would probably not be possible, which would leave looking for an exchange on your side of the river, which appears to be what they have done. If you look at the Openreach plans then they are trialling using fibre to each house/flat for new builds to avoid this sort of issue in future.
    So I'd take a guess that the river is the reason you are connected to Belstead exchange. Belstead is due to be upgraded to the upto 20M broadband early next year, but I don't know if that would help your speed much.
    Adam.

  • What the hell has happened to my form???

    I was just compiling my form (Program > Compile > All)
    And then my hand slipped I clicked something and now all the items on my form have been resized and moved arround. Some items are now really tiny. And some are bigger.
    What the hell did I do and how do I reverse it?
    Thanks in advance.

    I don't think it's that because when I run the form it looks fine even though the layout editor has some text items so small I can barely see them and some so big they take up entire tabbed canvases.

  • Have purchased an E-book, but cannot download. Keep getting URLLink-2.acsm. What the hell is that

    Have purchased an E-book. but cannot download. Keep getting URLLink-2.acsm. What the hell is that

    Downloading to the ereader depends a little on the eReader.
    Some very basic eReaders, and Kindles, do not support Adobe DRM, in which case you cannot read such books on that reader.
    Most dedicated eReaders should show up in the left panel of ADE when they are plugged in to the USB.
    You might need a special driver, eg for Sony eReaders a driver is installed with the Sony Reader software.
    Some don't work correctly on ADE2.0, in which case try using the older but more reliable ADE 1.7.2 instead (see bottom of post).
    Once the eReader does show up in ADE, you will need to authorize the eReader (menu-Library-Authorize Device on 1.7.2, setting to the left of the device in 2.0).
    You should then be able to drag-drop books onto the device from within ADE.
    For tablets uses as eReaders you need an appropriate eReader app.
    Post again if your ereader is a tablet.
    ~~~
    Version 1.7.2, it is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editions.html
    The forum software is sometimes corrupting the link above.  There shouldn't be a blank in 'editio ns.html'.  The following redirects to the same page: http://tinyurl.com/diged172

  • What the hell is SIGBUS????

    My program quits 1 time out of 2 due to SIGNAL 10 or 11 ( SIGBUS and SIGSEGV ) What the hell are these?? How can I fix them? ( I have Mac OS X 10.3 and use XCode 1.0 )

    Why I'm still using the old version? Coz I haven't got high speed and it's still downloading ( I'm doin it in many fragments ) i dunno however if it'd change a thing
    On google I read refering to an empty pointer in C could cause this error but not in java, right? And it doesn't always happen...

  • Bookmarks gone both on mac and android devices! what the hell?!

    ''dupe of https://support.mozilla.org/en-US/questions/933703 locking''
    what can i do to get them back?! all of my bookmarks have gone away when i repaired the mac with the sync account after an unfortunate accident...
    what the hell am i supposed to do now?! 3 years worth of bookmarks...gone... latest backup is 2 years from now. i never thought i'll need one again!

    No worries.. Firefox automatically creates bookmark backup files every day you use it (up to 10 backups total), with newer backups replacing the older copies.
    <br/>
    In Firefox go to the '''bookmarks''' window then click Import an backup then click '''Restore''' you should see a list of backups for your bookmarks.. Choose the most suitable item for you (The one with the date of before you lost your bookmarks) and click ok. It will replace the current content with the bookmarks in the item you chose
    <br/><br/>
    Have a nice day
    <br/>Sincerely,
    <br/>Ahmed N.

  • What the Hell is Application Server 10g R2

    Hello Experts....I am using Application Server 10g R2 on Windows Server 2003..In the Morning Everything(Especially Reports) Works fine...but in Evening i think it the Report Server get tired...it take too much time to run even simple Report..What the Hell is this..

    @Paul M...Thanks for your attention..
    its value is 1
    maxEngine="1"
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="90000">

Maybe you are looking for