Save Appleworks Database as Text File

I'm trying to save an Appleworks 6 database as a text file so that I can import into Microsoft Access on my PC. When I go to file>save as in Appleworks it only lists Appleworks 6, 5 and ClarisWorks as file format options. Can anyone tell me how to do this? Any tips on how to convert this to PC Access database would be awesome as well. Thanks!

Welcome to Apple Discussions
The "has been deleted" error isn't actually related to saving. AppleWorks doesn't "understand" OS X well & can give some strange error messages. Although I've only gotten this message when I've had AppleWorks 6 open in both Classic & OS X at the same time on previous Macs, others get it like you with no specific cause. It usually is fixed by using Disk Utility to repair permissions and deleting the AppleWorks 6 preferences. See my user tip, AppleWorks has stopped working correctly, for more on the preferences. Neither permissions or preferences are replaced or fixed with installation.
It would have been best for you to have started a new topic as your problem isn't not having the option to save as text, but not being able to save in any format.

Similar Messages

  • Addressing a database or text file

    Does anybody know what would be the soloution of addressing a database or text file and creating a folder for each entry - I work with 200 people who all need a folder to place work but obviously wanna sus a short cut!
    Help!

    Do you mean you want to extract a folder path from lines in a text file and create a folder from that path?
    You would have to paste a few lines from the file.

  • How to make the Open/Save dialogue download the text file instead of JSP

    I am currently coding on a JSP program, which searches the database and writes the resultset into a file on the server, and then allows the client to download this tab delimited text file onto their local machine. But I met a problem, when the default Open or Save dialogue appears, it shows that it's trying to download the running JSP file from my local host instead of the newly-created text file. Despite this, when I click OK to either Open or Save the file, a warning dialogue will appear saying: The explorer cann't download this file, it's unable to find this internet site or something like that. I get no error message from the server but I was always told that Javax.servlet.ServletException: getWriter() was already called. What does this mean?
    I guess maybe this is caused by the mix use of outputStreams in my program. I don't know if there is a way to directly read the resultset from the database and then send it through outputStream to the client. My solution is: first create a file on the server to hold the resultset, and then output this file to the client. I did all these in one JSP program: Create file on the server, search database, and then read file and output the contents to client. Is this correct? I attached my code, please feel free to correct any of my mistake? Thanks!
    //global.class is a class dealing with database connection
    <%@ page language="java" import="java.sql.*,java.util.*,java.math.*,java.io.*,ises.*,frmselection.*" %>
    <jsp:useBean id="global" scope="session" class="ises.Global" />
    />
    <!--start to process data-->
    <%
    //get query statement from the session
    String sQuery = "";
    if (session.getAttribute("sQuery")!=null && !(session.getAttribute("sQuery").toString()).equals(""))
    sQuery = session.getAttribute("sQuery").toString();
    String path = "c:/temp";
    String fileName = "temp.TXT";
    File file= null;
    FileOutputStream fo = null;
    PrintStream ps = null;
    try {
         file = new File(path,fileName);
         if(file.exists()) {
         file.delete();
         file.createNewFile();
         fo = new FileOutputStream(file);
         ps = new PrintStream(fo);
    }catch(IOException exp){
         System.out.println("IO Exception: " +exp.toString() );
    java.sql.ResultSet recResults     = null;
    java.sql.Statement STrecResults = null;
    STrecResults = global.getConnection().createStatement();
    recResults = STrecResults.executeQuery(sQuery);
    ResultSetMetaData meta = recResults.getMetaData();
    int columns = meta.getColumnCount();
    String [] tempColumnName = new String[columns];
    String [] ColumnName =null;
    int DisColumns = 0;
    int unDisCol = 0;
    String sLine = "";
    if(recResults.next()) {     //if_1
    for(int n=0;n<columns;n++) {
    String temp = meta.getColumnName(n+1);
    if(!temp.equals("PROJECTID")&&!temp.equals("BUILDINGID")&&!temp.equals("HAZMATPROFILEID")) {
    sLine = sLine + "'" + temp + "'" + " ";
    tempColumnName[DisColumns] = temp;
    DisColumns ++;
    ColumnName = new String[DisColumns];
    }else {
    unDisCol ++;
    }//end for
    for(int i=0;i<(columns-unDisCol);i++) {
    ColumnName[i] = tempColumnName;
    ps.println(sLine);
    do{
    sLine = "";
    for(int n=0;n<(columns-unDisCol);n++) {
    String tempColName = recResults.getString(ColumnName[n]);
    if(tempColName==null) {
    sLine = sLine + "" + " ";
    } else {
         sLine = sLine + "'"+tempColName+"'" + " ";
    ps.println(sLine);
    }while(recResults.next());
    }     //end if_1
    recResults.close();
    recResults = null;
    STrecResults.close();
    STrecResults = null;
    %>
    <!--end of processing data-->
    <!--start of download.jsp-->
    <%
    //set the content type to text
    response.setContentType ("plain/text");
    //set the header and also the Name by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=temp.TXT");
    //Open an input stream to the file and post the file contents thru the servlet output stream to the client
    InputStream in = new FileInputStream(file);
    ServletOutputStream outs = response.getOutputStream();
    int bit = 256;
    try {
         while ((bit) >= 0) {
         bit = in.read();
    outs.write(bit);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    outs.flush();
    outs.close();
    in.close();     
    %>
    <!--end of download -->

    Thanks. I believe something wrong with this statement
    in my program:
    You are correct there is something wrong with this statement. Seeing how you are doing this in a jsp, not really what they're made for but thats another topic, the output stream has already been called. When a jsp gets compiled it creates a few implicit objects, one of them being the outputstream out, and it does this by calling the response.getWriter(). getWriter or getOutputStream can only be called once, other wise you will get the exception you are experiencing. This is for both methods as well, seeing how the jsp compiles and calls getWriter means that you cannot call getOutputStream. Calling one makes the other throw the exception if called as well. As far as the filename problem in the browser goes I'm guessing that it's in IE. I've had some problems before when I had to send files to the browser through a servlet and remember having to set an inline attribute of some sort in the content-dis header inorder to get IE to see the real filename. The best way to solve this is to get the orielly file package and use that. It is very easy to use and understand and does all of this for you already. Plus it's free. Cant beat that.
    ServletOutputStream outs =
    response.getOutputStream();
    because I put a lot of printout statement within my
    code, and the program stops to print out exactly
    before the above statement. And then I get the
    following message, which repeats several times:
    ServletExec: caught exception -
    javax.servlet.ServletException: getWriter() was
    already called.

  • Database or text file

    Since I was able to get my first question answered so quicky (thanks again), I wonder if I could get an opinion from the experienced programmers here.
    I am creating a computer forensics application to verify file signatures found in the header , to the extension. For example, a .pdf file has a hex file signature of 25 50 44 46, a .com file has a signature of 4d 5a, etc. Each file type has it's own file signature.
    My question is two-fold. First, what would be considered an optimal means of storing and accessing the data for each file type? Second, what would be the optimal means for adding new data?
    With my limited knowledge, I have two means avaialable. One would be to create a text file with the necessary information. Then all I would need to do is find the correct string, and parse the information necessary to make the correction. My other thought was to make an individual class for each type of file, and add classes as necessary. Since each type of file has a differnt signature, and it's found in different places in the header, and even sometimes skips spaces, essentially each type has to be handled a little differently. Then I would just need to constructors to access the proper class.
    Any thoughts?

    database seems as too much for your problem, serarching the
    text file for each entry seems very resource/time consuming.
    I would propouse making a Hashtable with the extension
    as a key, and the signature as the value, and then having a
    loadHashtable and a saveHashtable method so you would just have to
    create the hashtable when you start your app and save it when you end it:
    class FileHeader{
    String extension,hex_signature;
    public FileHeader(String ext,String hex_sig){
    extension = ext;
    hex_sig = hex_signature;
    //other methods
    public String getExtension(){
    return extension;
    public String getSignature(){
    return hex_signature;
    public class MyApp{
    java.util.Hashtable files_hash;
    public MyApp(){
    files_hash=new java.util.Hashtable();
    loadHashtable();
    public void loadHashtable(){
    //load the hashtable with FileHeader objects containing every filetype
    public void saveHashtable(){
    //save all the extension,signature pairs in a file
    public boolean checkSignature(String extension,String proposed_signature){
    FileHeader file = (FileHeader) files_hash.get(extension);
    return file.getSignature().equals(proposed_signature);

  • How to save input from a text file in to array

    I got this assignment, and almost have no clue, and my teacher doesn't even teaches us anything
    This is what i am suppose to do
    5. The program must store the following data about each student in this Talent Show:
    * The student's name (store as a String)
    * The student's average time score [only for the events they competed in] (store as a Double)
    Note: Some of the data comes directly from the text file, and some of the data must be calculated from the data that is read from the file.
    6. The program must search through all of the student's scores to find the student who has the minumum average time of all students.
    7. You must calculate how many events each student played. Zero values are not counted.
    8. You must then generate a report on the screen that prints out
    * the total number of students in the competition,
    * the winning student's ...
    o name
    o times
    o average time (rounded to one decimal places)
    Sample output
    btw this is the data file
    Bart Simpson
    7.5
    12.3
    7.8
    19.2
    9.9
    5.3
    8.5
    11.8
    2.2
    4.6
    Stewie Griffin
    9.5
    29.7
    7.8
    22.5
    9.9
    12.6
    8.5
    0
    8.2
    0
    Pinky
    2.5
    0
    1.8
    0
    3.9
    0
    6.5
    0
    5.2
    12.1
    Rocky N Bullwinkle
    10.0
    22.2
    9.5
    17.5
    9.9
    1.5
    8.7
    23.7
    9.2
    11.0
    Angelica Pickles
    5.5
    11.1
    6.8
    12.2
    7.9
    13.3
    8.1
    5.1
    7.2
    7.9
    Pink Panther
    8.5
    5.5
    8.8
    6.6
    8.9
    7.7
    9.9
    8.8
    2.2
    9.9
    Josie
    9.5
    0
    8.8
    12.2
    9.9
    0
    8.5
    0
    9.2
    5.3
    Rogue
    8.5
    1.1
    7.8
    2.2
    7.9
    3.3
    7.5
    4.4
    8.2
    5.5
    Usagi Tsukino
    8.5
    15.5
    8.8
    30.1
    9.9
    19.7
    9.5
    11.0
    8.2
    8.6
    Yosemite Sam
    0
    15.2
    0
    29.5
    3.9
    0
    0
    16.0
    0
    7.7
    My code so far
    import java.io.*;
    public class test
        public static void main (String [] args)
            FileInputStream File1;
            DataInputStream In;
            String fileInput = "";
            try
               File1 = new FileInputStream ("data.txt");
                In = new DataInputStream (File1);
                while (In.available () > 0)
                    fileInput = In.readLine ();
                    System.out.println (fileInput);
                In.close ();
            catch (FileNotFoundException e)
                System.out.println ("Error - this file does not exist");
            catch (IOException e)
                System.out.println ("error=" + e.toString ());
    }My question, how do i save the data in to an array, and how do i seperatly save names in to different array, and their scores in to different arrays
    bte he said you can use scanner class
    Thanks
    Edited by: supahsain08 on Mar 26, 2008 2:55 PM

    supahsain08 wrote:
    Well, you are not in my class and you don't even know my teacher
    who are you to judge meHe is jaded by our experiences here. 99% of posters who complain that the teacher doesn't teach have adequate (note that I didn't say good) teachers, but it's the student who is failing to take responsibility for his own education. It is after all your responsibility and complaining won't help you any.
    Good luck.

  • Save a report (or text file) in pdf format?

    Hi,
    I like to save a kind of log file in a non changeable format like pdf.
    I'm using the DSC module under LabVIEW are there some possibilities?
    Or is there a chance to save text file into a postscript file?
    Thanks for help,
    martin

    Hallo Martin,
    to be able to write to a PDF file you need some extra software that is able to create those files.
    Most of those programs are installing themselves as printer drivers, so if you want to wrate a table into a pdf file you will have to create a report and print it. LabVIEW insrtalls a couple of exaples regarding report generation, online I found an example for "printing" the frontpanel screen into a PDF.
    http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B45EACE3DF2556A4E034080020E74861&p_node=DZ52084&p_source=External
    Ingo Schumacher
    Systems Engineer Sound&VibrationNational Instruments Germany

  • Save tree structure to text file and load textfile to another tree control

    I'm able to save the structure and data to a text file, thanks to the "save tree structure to textfile" info found on this msg board, but can't seem to load the complete tree structure data from the text file into another tree. I've only been able to load parent data but can't get the hierarchy of the tree with the indents and child data to work.
    Thanks

    Thanks Tanya,
    However, I'm still stumped on how to copy (from text file) to other columns in the tree (from one tree to another).  I can only get the first column to load.
    I've attached my working VI and a textfile that I use to load into the "User list" tree.
    Rick
    Attachments:
    Text File to Tree V2.2.vi ‏58 KB
    test file save16.txt ‏1 KB

  • Text file being overwrite when another info is save in he same text file

    At first, the text file is use for saving user information but after that when i want to save more thing in the same text file, the user infomration is being overwite. How can prevent the original message from being overwite?

    When you create the CFile/CNiFile object to write to the file, use the CFile::modeNoTruncate flag to indicate that you want to open the file as an existing file and that you don't want the file to be truncated to 0 length. For more information, see documentation for the CFile flags.
    - Elton

  • How do I save an iWeb as text files, XML Sitemaps based on the Sitemap Protocol, or RSS or Atom 1.0 feeds.

    How do I save a web site created in iWeb as something other than HTML. I need to do this because Google will not let me optimize my site as HTML. Google accepts text files, XML Sitemaps based on the Sitemap Protocol, or RSS or Atom 1.0 feeds. Your assistance would be greatly appreciated.

    You mean this ?
    https://developers.google.com/speed/pagespeed/
    First glance. Google does not optimize. It provides suggestions how to optimize.
    You do the optimizing.
    Here's the result of an iWeb page :
    https://developers.google.com/speed/pagespeed/insights#url=http_3A_2F_2Fwww.wyod or.net_2Fmfi_2FMaaskant_2FHow__To.html&mobile=false

  • Database to Text file

    I want code for storing Database content to text file formate as well as Text file to Database.Plese help me

    why don't you just set up some type of ODBC to a text file? Or to Access or Excel, and then export it?

  • How to save data results into text file

    I want to solve an equation of degree 2 for example, and results are displayed in a text file

    Like many other software coding forums, we don't want to give hand outs.  We are more than happy to give hand ups.  Show that you've tried to figure out the problem and show us where you are stuck.  Then we will be glad to help you get you unstuck.  If we just give you an answer, you will learn nothing.
    As far as writing to a text file, look in the File I/O palette for the Write to Text File primitive.  Also, if you go to Help->Find Examples... and do a search for "text file" you will get some examples of how to use it.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Nokia e63 save email attachment as text file

    When I receive email with text document attached and select save, it is always saved in office notes. While this is probably  a reasonable thing to do, the problem is that I cannot find the saved file using file manager. So this text document becomes unavailable for other installed programs. Answers to following questions would help mightily:
    1. How to save email attachment to specified folder (any attachment)?
    2. How to save note from Menu->Office->Notes to some specified folder?
    3. Where Menu->Office->Notes stores the notes? (Active Notes stores them in folder called ActiveNotes in root folder)
    4. Is it possible to remove this program, since its features are completely covered by Active notes?

    The email client saves attachments to the folder Others if you choose 'save' from the menu. Notes cannot be individually accessed, they're a some kind of database hidden deep into your phone. To save your note to some folder the only thing you can do is copy and paste it to Quick Office and save it from there.
    You can't remove the Notes program. I've moved all my notes to Active Notes and use the memory card to store them. As you said, Active Notes does all that Notes does, and more. Notes just starts up a few milliseconds faster
    Message Edited by kvirtanen on 13-Mar-2009 01:57 PM
    kvirtanen.deviantart.com

  • Can I save data to a text file without the browser?

    Hello Everyone,
    I have a stand alone application that would run without a
    browser on desktop. I would like to write data to a text or
    database (MYSQL/PHP). Would it be possible for me to extend this
    functionality to a AS3 Stand Alone Application which would be
    strictly running on desktop?
    Appreciate your help.
    Thanks a lot.

    Look into AIR. It has more capabilities than Flash regarding
    to writing info to disk including an SQLite database.
    You can create AIR fils with the Flash and Flex IDEs.

  • How do I save Appleworks databases and documents when I upgrade to Maverick?

    I have a lot of databases and documents in Appleworks. How can I access them if I upgrade to Maverick?

    As of Lion (10.7) the PowerPC compatibility "Rosetta" utility is no longer supported by Apple.  So PowerPC programs such as AppleWorks no longer work.
    You can run Snow Leopard (10.6) on an external drive or on a partition on your internal drive to continue running PowerPC programs under the Rosetta utility.  Using the Startup Manager http://support.apple.com/kb/ht1310 you would boot Snow Leopard to run the PowerPC applications and then reboot a newer OS (10.7, 10.8 or 10.9) to run normally.
    If you will be using the PowerPC applications often and you want to run them on Snow Leopard at the same time you run a newer operating system, then you can use Parallels.  You need to call Apple to order it.  You need the Snow Leopard Server version to use it with Parallels.
    Snow Leopard Server for $19.99 + sales tax & shipping costs at 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only). 
    Parallels ($80): http://www.parallels.com/products/desktop/

  • Saving an AppleWorks database file as text

    I could have sworn that I had success last week opening an AppleWorks database file, choosing "Save As..." and then saving my database as a text file. However, I am trying to do this right now, and "text" is not available as an option when I choose "Save As..." I'm starting to wonder if maybe I am mistaken and that I was never able to do this. I have read several forum posts where folks have made reference to "save your database as text," but I'm starting to doubt that this can be done. If an AppleWorks database CANNOT be saved as text, then I am stunned. I recently bought FileMaker Pro 8.5, and I would be absolutely bewildered if there was no way to move an AppleWorks database over to FileMaker. Converting to text isn't pretty, but at least that would work. But is it true that I am not able to save an AppleWorks database as text? Is there any other way to move data from an AppleWorks database file to FileMaker?

    Hello
    Saving as text is the only way to transfert AW6 data to FileMaker.
    As you are unable to do that, I assumes that you moved AppleWorks out of its standard folder where it must stay with its companions folders:
    Starting Points
    AppleWorks Essentials
    The translators are stored in "AppleWorks Essentials:Translators" folder.
    If you moved the app, it would be unable to find (and use) these translators.
    I wish to add that I don't like this formulae.
    When I need to save a database as a text file, I activate a layout containing all the fields (at least all those which are not calculated ones.
    I select Options > Show all records then, I copy all ans paste into a new WP documentwhich I save as an ASCII file.
    Doing that,
    -- I keep the contents of longtext fields (1004 characters)
    -- I keep the comma which is used in france as decimal separator (it is replaced by a period when I save directly as a text file).
    Now, Santa Claus is tired and leaves you to sleep;-)
    Yvan KOENIG (from FRANCE mardi 26 décembre 2006 00:40:50)

Maybe you are looking for

  • How to populate data in the table DBERCHV

    Hi Experts, When I create Bill document, it is not creating entry in table DBERCHV (Consumption History). Is there have any configuration or other way to populate this table with Billing data. Also, I noticed, tables like DBERCHZ1, DBERCHZ3 and DBERC

  • Keeping same Events and Projects on 2 external HD - Best Practice

    I would like to receive your suggestions on this working flow. (I am also interested to get some confirmation that I am doing the right way). I use FCPX since few weeks. Coming from iMovie and FCE. I import videos from external drive "C" on 2 differe

  • How does the SetDefaultReport Method really work?

    I've looked in the forum and can't find the answer in enough detail for me to understand it. I need to create a new print button on a system form (delivery notes) and when the user presses it, I need to change the default report for the user/bp combi

  • How to save configuration of EP6.0?

    Hi, how can I save the configuration I applied to my Enterprise Portal so I can easily restore them on a new Portal? Thanks, boris

  • Help! Need advice on how to read Catalogue Preview Data

    Recently my secondary harddisk which contains my recent photos crashed :-( There goes all the photos, but I could still access the 1:1 high quality thumbnails that I have generated in LR 2.5. What I know is that the thumbnails are located on C:\Docum