Javascript help for newbie

Hi,
I have a 18x12 booklet form PDF (each PDF page consists of 2 9x12 images) that I need to split into single 9x12 pages.
Found 2 scripts on the net to split pages in Acrobat and the other one to reorder the split pages. (after splitting the pages one ends up with page 1, page 24, page 2, page 23, etc.) Need to reorder the pages and found the Reorder script below.
But it doesn't work in Acrobat 9 - I'm getting an illegal character error in line 20. (seems to be this line? nStart: i * 4 – 3).
I don't even get a menu item called Reorder Pages under Documents.
Help?
Script:
ReorderDocument = app.trustedFunction(function()
// create a new document
app.beginPriv();
var newDoc = app.newDoc();
app.endPriv();
// reorder pages in booklet order into new document in sequential order
var i = 0;
var n = this.numPages;
for (var i = 1; i <= n / 4; i++)
newDoc.insertPages( {
nPage: newDoc.numPages-1,
cPath: this.path,
nStart: i * 4 – 3,
nEnd: i * 4 – 2
newDoc.insertPages( {
nPage: newDoc.numPages – 1,
cPath: this.path,
nStart: n – 1
for (var i = 1; i 1)
newDoc.deletePages(0); // this gets rid of the page that was created with the newDoc call.
// add the menu item
app.addMenuItem({
cName: "reorderPagesJS", // this is the internal name used for this menu item
cUser: "Reorder Pages", // this is the label that is used to display the menu item
cParent: "Document", // this is the parent menu. The file menu would use "File"
cExec: "ReorderDocument()", // this is the JavaScript code to execute when this menu item is selected
cEnable: "event.rc = (event.target != null);", // when should this menu item be active?
nPos: 1

Hold on - just found another webpage with different code. This one seems to work now. Posting it here in case somebody else needs it: this script is to reshuffle pages are having split a booklet form PDF into separate pages:
ReorderDocument = app.trustedFunction(function()
// create a new document
app.beginPriv();
var newDoc = app.newDoc();
app.endPriv();
// reorder pages in booklet order into new document in sequential order
var i = 0;
var n = this.numPages;
for (var i = 1; i <= n / 4; i++)
newDoc.insertPages( {
nPage: newDoc.numPages-1,
cPath: this.path,
nStart: i * 4 - 3,
nEnd: i * 4 - 2
newDoc.insertPages( {
nPage: newDoc.numPages - 1,
cPath: this.path,
nStart: n - 1
for (var i = 1; i <= n / 4 - 1; i++)
newDoc.insertPages( {
nPage: newDoc.numPages - 1,
cPath: this.path,
nStart: n - i * 4
newDoc.insertPages( {
nPage: newDoc.numPages - 1,
cPath: this.path,
nStart: n - i * 4 - 1
newDoc.insertPages( {
nPage: newDoc.numPages - 1,
cPath: this.path,
nStart: 0
if (newDoc.numPages > 1)
newDoc.deletePages(0); // this gets rid of the page that was created with the newDoc call.
// add the menu item
app.addMenuItem({
cName: "reorderPagesJS", // this is the internal name used for this menu item
cUser: "Reorder Pages", // this is the label that is used to display the menu item
cParent: "Document", // this is the parent menu. The file menu would use “File”
cExec: "ReorderDocument()", // this is the JavaScript code to execute when this menu item is selected
cEnable: "event.rc = (event.target != null);", // when should this menu item be active?
nPos: 1

Similar Messages

  • JavaScript help for newb

    I have used JavaScript before, but not within Apex. I have several calculated fields that I need to be able to update after user input (I think the onChange() function will work just fine). I have browsed through over a dozen threads on using JavaScript, but I seem to be missing the one little piece that will make this all click.
    All I need to do is some very basic form manipulation, ie field1 x field2 = field 3, etc. Can someone please point me at a very simple example that shows:
    a) the JavaScript function code for referencing field values
    b) where to put said code (I think it is HTML Header in Page Definition, but confirmation or correction would be appreciated.)
    c) how to reference said code on a field. (where to put it in field definition)
    In case you want to see what I am doing, I have posted the form :
    http://apex.oracle.com/pls/otn/f?p=21392:10:426232455000914
    (use the Dashboard tab)

    Hi,
    You could do something like:
    function calc()
    var field1 = document.getElementById("field1");
    var field1value = parseFloat(field1.value);
    if (isNaN(field1value)) {field1value = 0);
    var field2 = document.getElementById("field2");
    var field2value = parseFloat(field2.value);
    if (isNaN(field2value)) {field2value = 0);
    var field3 = dcoument.getElementById("field3");
    field3.value = (Math.round(field1value * field2value*100)/100);
    This will retrieve the text values for field1 and field2, convert them to floats (if the values cannot be converted, the if tests will set them to zero), multiply the two values, round them to 2 decimal places and put the result into field3.
    Put this in a script tag anywhere on the page. I tend to put javascript functions in a separate region either in the "After Header" or "Before Footer" region position.
    I would then use the onblur event on field1 and field2 to call the script. You can add this in the "HTML Form Element Attributes" setting for the field definitions:
    onblur="calc()"
    I couldn't get into your OTN site as you didn't specify the username/password to use!
    Regards
    Andy

  • Javascript help for date.

    I am starting to create a website and would like to include
    the current date on my site. I searched around on the internet and
    came across this code but it doesn't seem to show up when I include
    it in the code of the webpage.
    <script type="text/javascript">
    var d=new Date()
    var weekday=new
    Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var monthname=new
    Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    document.write(weekday[d.getDay()] + " ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getDate()] + ", ")
    document.write(d.getFullYear())
    </script>
    Is this code incorrect? Or am I not using character spacing
    correctly? I have been looking for additional javascript to use but
    I thought that I should try this forum for assistance. Any help
    would be greatly appreciated. Thanks in advance.

    And the URL is:
    http://blog.kaosweaver.com/index.php?entry=entry071010-093431
    (sorry)
    Paul Davis
    http://www.kaosweaver.com/
    Visit us for dozens of useful Dreamweaver Extensions.
    http://www.communitymx.com/
    Partner at Community MX - Extend your knowledge
    JaneGarner wrote:
    > Bregent, I agree that there is better content to have on
    a website, but I am
    > very new to web design and am trying to learn different
    things. I am interested
    > in learning the javascript to have the date, but not
    sure if I will include it
    > when I design my website. And the date would be the date
    that the visitor views
    > my website, not the current date of the server.
    >
    > E Michael Brandt, yes the script is all on one line and
    it is in the body of
    > the page
    >
    > I did attach the code but this is just a test page to
    work with the date.
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title>TestPage</title>
    > </head>
    >
    > <body><script type="text/javascript">
    > var d=new Date()
    > var weekday=new
    >
    Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    > var monthname=new
    >
    Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    > document.write(weekday[d.getDay()] + " ")
    > document.write(monthname[d.getMonth()] + " ")
    > document.write(d.getDate()] + ", ")
    > document.write(d.getFullYear())
    > </script>
    > </body>
    > </html>
    >

  • Trying to create install script in PackageMaker...help for newbie

    Hello,
    I am trying to deploy a solution as an install package. Currently, there are 3 items inside the folder that needs to be installed in the /Applications folder. This in itself is easy. However, when I create upgrades to the solution, I want to carry over one file from the previous installation to the new one. Is there a way to have this upgraded version install and instead of removing all of the earlier files, can it install the new files (which are 3) and carry over 1 of the other files.
    I hope this makes sense. Thanks for any input or sample scripts that I may be able to modify to accomplish this.
    Thanks,
    Stephen

    Thanks for your time!
    Perhaps it would help if I explain a little further my situation and what I am trying to accomplish.
    I have a database runtime solution that I want to distribute. I have all of the necessary files in a single folder, let's say, named "Progam 1.2". Since whenever I upgrade this version, I need to have the old data file from the previous version on hand to import into the new file, I create a new folder called "Program 1.3" So after the installation, I would have both folders. The user then opens the new version and the program then will import the previous versions data. At that point the user may delete the previous version folder entirely.
    My question is how can accomplish an install so that the new version will not overwrite the previous folder "Program 1.2" when installing the upgrade to "Program 1.3" since I need the data file for updating the data. Ideally, I would love to have the new folder installed and the single data file in the previous version folder be copied to the new versions folder and be renamed to "Previous Data" so that the new version can update the data.
    Again, I am a complete newbie in this arena and have simply been doing DMG files where the user copies the new version to the applications folder. But if there was a way to automate this installation more, I would like to do that.
    Thanks again for your help!
    Stephen

  • Help for Newbie setting up business

    Hi!  Total newbie here. Any help would be appreciated.
    I use a Mac.  I'm developing a web internet business.  I'm planning to install and use Adobe Scene 7 for all it's features. In reading about Adobe Scene 7 it says it is 'hosted'.  I am planning on using Earth Girl Hosting for my business and I was hoping that I could use Adobe Scene 7 while using Earth Girl hosting.  Does anyone understand if I can do this and is it problematic if I do? 
    What exactly do they mean by Adobe Scene 7 is hosted?  Does that mean they host your whole web site?
    Later on I was planning to take a course at SMU that uses and teaches Dreamweaver.  If I have Adobe Scene 7 installed and using it in my business, will I be able to use Dreamweaver too........will they interface okay?
    Thanks so much for any help......... break it down for me on the newbie level if possible!

    What exactly do they mean by Adobe Scene 7 is hosted?  Does that mean they host your whole web site?
    This means that the program that is used to develop the web site is operated from an Adobe server, the same server that will host the site.
    Later on I was planning to take a course at SMU that uses and teaches Dreamweaver.  If I have Adobe Scene 7 installed and using it in my business, will I be able to use Dreamweaver too........will they interface okay?
    No, you will not be able to just use Dreamweaver to continue maintenance of the web site that is created by Scene 7. There may be small parts that are visible in the browser that you can use in Dreamweaver, but the dynamic parts will not be available.
    If time is of essence, the low learning curve of Scene 7 will probably help you get on line quickly. After that, either maintain it using the same tools or forget about it and start producing real web sites with Dreamweaver or other compatible web authoring software.

  • Help for Newbie?

    Hello,
    I am a beginner to FCE. I have made a handful of DVDs from imovie but wanted to move up a notch and learn something new. I video for the coaches at our local high school and usually make a highlight video. Also this year I have a senior and have been asked to do the video of rememberance for the senior class. I look forward to this but feel so unsure of myself. Would anyone be interested in helping me learn to run the program and give me some new ideas for these projects? The football video I usually get done by basketball season and the senior video needs to be done by May. This may involve some phone conversations or web cam.
    Thanks in advance.

    The best idea and advice I have for you is Tom's book.
    http://www.amazon.com/Final-Cut-Express-Editing-Workshop/dp/0240810775

  • Help for Newbie -- Premiere Elements 10

    I'm completely new to video editing.  I know this is supposed to be the easiest software, but I'm getting nowhere.  Part of the problem is that the software doesn't seem to come with a manual -- in paper or pdf.  The help button ships me out to various tutorials, etc., but they're all for version 11.  I tried following the basic tutorial for organizing videos, and the buttons they wanted me to click just didn't exist. (such as for creating an "album."     Maybe it's because of the different version or maybe it's because I'm supposed to already know how to set up the software so that I see the same things they're showing me in the tutorials. 
    Is there any book that truly takes you through everything from othe very beginning?   Better yet, is there any service that would actually let me talk things out with an expert and perhaps let me log onto my computer so he can see what's on my screen and explain why it doesn't look like what's in the tutorial? 
    Thanks. 

    Yes there is a PDF
    User Guide PDF http://help.adobe.com/en_US/premiereelements/using/index.html
    Right click PDF link in the upper right corner and select to save to your hard drive
    -the page also has links to help pages for previous versions
    Importing Video http://forums.adobe.com/thread/1065281
    Saving & Sharing http://forums.adobe.com/thread/1051093
    Sharing for Computer http://forums.adobe.com/thread/1058237
    Steve's Basic Training Tutorials... steps are the same for several versions
    -http://forums.adobe.com/thread/537685
    -v10 http://www.amazon.com/Muvipix-com-Guide-Premiere-Elements-Version/dp/1466286377/
    -All http://www.amazon.com/Tricks-Adobe-Premiere-Elements-Muvipix-com/dp/1451529724/
    -and http://forums.adobe.com/thread/498626
    FAQ http://forums.adobe.com/community/premiere_elements/premiere_elements_faq
    TIPS http://forums.adobe.com/community/premiere_elements/premiere_elements_tips
    Another help site http://muvipix.com/ or http://muvipix.com/phpBB3/
    Premiere Elements Updates http://www.adobe.com/support/downloads/product.jsp?product=101&platform=Windows

  • Startup shell script help for newbie?

    New to UNIX (linux)... need the bash shell script commands for my r.c local file to start my services when server boots.
    I got my ds, dps and admin server in their respective /opt directories. I need the shell commands to have these start. Of course I can start them manually but when I try a line like this in a script, it doesnt work:
    ./var/opt/sun/directory-server/slapd-dsserver/start-dsserver
    Some path problem or dot thing?

    There are a few other things you may want to consider, such as what the default browser is, are tabs being used, is the page loaded yet, etc, but Safari has a do javascript command in it's scripting dictionary. The following script will open a new document and run your specified javascript, or you can go to their NPR Program Stream Page and download a playlist that will run directly from iTunes.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 335px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set my_script to "NPR.Player.openPlayer(2, 0, '03-21-2008', NPR.Player.Action.PLAY_NOW, NPR.Player.Type.PROGRAM, NPR.Player.Mode.LIVE)"
    tell application "Safari"
    activate
    set the URL of the front document to "http://www.npr.org/"
    if my page_loaded(20) is false then error numner - 128 -- page not loaded in time
    do JavaScript my_script in document 1
    end tell
    on page_loaded(timeout_value) -- from http://www.apple.com/applescript/archive/safari/jscript.01.html
    delay 2
    repeat with i from 1 to the timeout_value
    tell application "Safari"
    if (do JavaScript "document.readyState" in document 1) is "complete" then
    return true
    else if i is the timeout_value then
    return false
    else
    delay 1
    end if
    end tell
    end repeat
    return false
    end page_loaded
    </pre>

  • ThinReg Help for Newb

    I'm sorry to be asking this since I'm sure this has been asked in the past, but I'm new to the thinapp world and need to get some clear direction on what I need to do to make the VM application successful. I have built my Package and have it ready, and I can open and run the file as a user if I run the package from the users home directory. I would like to place all Thin applications on a network share for the users to be able to access it. When I do this and create a link and drop it on the users desktop, it comes up with a Error "The system cannot find the file specified". I read about an application ThinReg that I need to run in order to get this to work, but have not been able to make any head way. I ran the Thinreg on the package and the screen blinks and comes back but nothing happens. I'm sorry to reach out, but I'm having a hard time with this an running out of time. The Application that I packaged is Adobe 9 and will need to some how get this to work from a Network share and some how with when called from IE on the local system. Any help would be great.
    Thank you,
    Wess

    You have a lot of issues here, but this little piece might help you. Thinreg is ran to register the thinapp on the machine where it will be run. I found a blog post with a little thinreg info. You can also get more info by running the thinreg.exe with the /? switch.
    http://blogs.vmware.com/thinapp/2008/10/thinapp-thinreg.html
    I'm new the thinapp too. Maybe we can help each other figure out this product.

  • Javascript help for pagecount

    H All,
    I am trying to write a javascript to show the address if the page count on the form is less than 10 pages . the form grows dynamically based on the .xml data
    my address field has javascript
    xfa.resolveNode("Correspondance.#subform.Client_Addrp1").rawValue = xfa.resolveNode("Correspondance.#subform[4].Client_addr_Name").rawValue + "\n" +  xfa.resolveNode("Correspondance.#subform[4].Client_addr1").rawValue + "\n" + xfa.resolveNode("Correspondance.#subform[4].Client_addr2").rawValue + "\n" + xfa.resolveNode("Correspondance.#subform[4].Client_addr_City").rawValue + " " + xfa.resolveNode("Correspondance.#subform[4].Client_addr_State").rawValue + " " + xfa.resolveNode("Correspondance.#subform[4].Client_addr_zip").rawValue;
    but i also want to show the address on the page if the page count is less than 10 pages, can somebody help me to incorporate the pagecount logic on the address field.
    Thanks in advance.
    Cwilliam

    Thanks srini, it worked ..thank u very much..
    also if possible can you please tell me the difference between
    xfa.host.numpages and xfa.layout.pageCount()
    i have tried if(xfa.host.numpages <10)
    { }, it did not work though..
    Thanks again
    cwilliam

  • Obsolete help for newb

    I have new to RMAN, about 30 minutes new. I have a system that is using RMAN is some fashion (still trying to fully determine), but right now I am getting errors because a file system is full:
    Errors in file e:\oracle\product\10.1.0\admin\wqp2\bdump\wqp2_arc1_2992.trc:
    ORA-19504: failed to create file "C:\ORACLE_ARCHIVELOGS\WQP2\ARC13494_0545153516.001"
    ORA-27044: unable to write the header block of file
    OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 112) There is not enough space on the disk.
    I found a script that is supposed to run "delete obsolete" every night, but according to listing in Enterprise Manager all of the files listed under "image copies" are not listed as obsolete and are "available".
    How do I make these files obsolete and do the subsequent deletion.
    I did an RMAN> show all; to learn that the retention policy is set to a 10 day window. Almost all of the 600+ files listed are older than that.
    Thanks for any pointers.

    Hello,
    First of all cross check the filesystem looks like one of the filesystem was full. Because of that reason your backup fails. Secondly you need to cross check whether the obosolete backups backups are delete on regular basis or not.
    Try crosscheck backup and crosscheck archivelog and check for backups then check for obsolete backups and clean them up.
    RMAN> report obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 2
    Report of obsolete backups and copies
    Type Key Completion Time Filename/Handle
    Backup Set 9872 06-MAR-06
    Backup Piece 9874 06-MAR-06 E:\BACKUP\SRI\RMAN\C-1762478285-20060306-00
    Backup Set 9873 06-MAR-06
    Backup Piece 9875 06-MAR-06 E:\BACKUP\SRI\RMAN\C-1762478285-20060306-01
    RMAN> delete obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 2
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=135 devtype=DISK
    Deleting the following obsolete backups and copies:
    Type Key Completion Time Filename/Handle
    Backup Set 9872 06-MAR-06
    Backup Piece 9874 06-MAR-06 E:\BACKUP\SRI\RMAN\C-1762478285-20060306-00
    Backup Set 9873 06-MAR-06
    Backup Piece 9875 06-MAR-06 E:\BACKUP\SRI\RMAN\C-1762478285-20060306-01
    Do you really want to delete the above objects (enter YES or NO)? YES
    (OR)
    RMAN> delete noprompt obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 2
    using channel ORA_DISK_1
    Deleting the following obsolete backups and copies:
    Type Key Completion Time Filename/Handle
    Backup Set 9872 06-MAR-06
    Backup Piece 9874 06-MAR-06 E:\BACKUP\SRI\RMAN\C-1762478285-20060306-00
    Backup Set 9873 06-MAR-06
    Backup Piece 9875 06-MAR-06 E:\BACKUP\SRI\RMAN\C-1762478285-20060306-01
    deleted backup piece
    backup piece handle=E:\BACKUP\SRI\RMAN\C-1762478285-20060306-00 recid=60 stamp=584364359
    deleted backup piece
    backup piece handle=E:\BACKUP\SRI\RMAN\C-1762478285-20060306-01 recid=61 stamp=584364401
    Deleted 2 objects
    -Sri

  • Help For Newbie!!! Won't let me log into Facebook, etc!!!

    I am new here so if this is in the wrong area I am sorry.... Anyways I deleated my History/Bookmarks manually through bookmarks in Safari two days ago, and I was in Pizza Hut with the family yesterday and tried logging into facebook and other "Log In" sites and it wouldn't allow me to do so.
    It would "Log" me in and say I was signed in successfully then it would direct me back to the main page because I wasn't logged in successfully.
    All help in this situation is greatly appreciated.
    Shep

    Same thing happened to my wife the other day. Just re-install the facebook app again.

  • HELP ME GUYS WITH CREDIT ADVICE FOR NEWBIE

    Thanks for reading!  I just want to ask you guys, I'm looking to help my girlfriend open her first credit card.  I have plenty with all of the creditors and I began with Capital One.  I believe at that time I had my student loan reporting though.  She has nothing on her report aside from a few inquiries (AT&T and a few store card HPs).  She said some of her friends have been approved for a low CL Discover It card.  I don't know if there is a Discover It offering for newbies or if they must just have something on their report.  I recommended she get a Cap1 card.  That way she can have her son on the card image and I know that since I've heard they triple pull they're pretty leanient.  What do you guys think?  Any advice on what secured card she should get should it come to that?  Thanks very much again!

    HappyCamper123 wrote:
    Do NOT cosign for your girlfriend. If you break up, your finances could get messy.
    Have her apply for an It card, they love clean, thin files. If that fails, go for a secured Boa card or Cap One credit steps. Maybe make her an AU on an Amex of yours to build history (you can artificially set a limit to limit your liability).Amex is the one I called first about AU and then Citi.  I almost did it with Citi because surprisingly the rep for Amex wasn't very helpful.  Should I (she) even be concerned with inquiries when she literally has no score anyway?  Do they really impact a score that doesn't exist or do they hurt a score once one becomes available.  The whole thing is I was just concerned that we'd apply for stuff and she woulnd't get approved and that she'd have another senseless inquiry.  As I said, she already has several.

  • Need help in decoding javascript tag for HTML5 output.

    Hello all,
    I am working on a project in Adobe captivate 7 64 bit which consists of around 500 slides with most of the slides being text and image. The problem I am facing is very unusual which I guess I am the first one to experience (as per my search on google and forums). So, after I publish my project the output works fine in html (local and online) BUT when I run index.html (i.e., HTML5 output) the course does not run and screen is blank.
    After spending a week on searching online and using the trail and error strategy I was able to find out that it was the URL text "F:\usrnew\purchase" placed in the the middle of the course which caused the whole damage. However the url was removed and the project was submitted.
    After spending some extra time I found out that the letter "\u" which is a javascript tag was causing the problem for the HTML5 output. I don't really know much about javascripting but found out that the tag can be decoded using some programming strategy. Now this is where my knowledge comes to a standby and needs a lift from you guys.
    Any ideas, help, knowledge sharing would be very helpful for me and all those who might face this issue in future.
    Looking forward for your views.
    Kind Regards,
    Mirza

    Voila! The issue is resolved.
    Solution: Change the single slash "\" to a double slash "\\".
    Cheers,
    Mirza

  • Need help for a newbie!!!

    Hi,
    I have set up a website on a new Redhat7.3 box with Apache2.0 and integrated Tomcat4.0 to handle the servlets used in the site. Yesterday I finished installing Oracle 9i Enterprise edition on the machine (I need a simple single table database that I will be able to access through the servlets). I am a bit overwhelmed by all the info out there that I really don't know where to start, so my questions are:
    1: "What do I do to make the database?"
    2: "How do I access the database, should I use the Thin or the OCI driver?"
    3: "Are there any examples around to do the above?"
    In general I mainly need to know where to go from here and if there may be any resources around to help a newbie like myself.
    Thanks again,
    Rick.

    Hi,
    I have set up a website on a new Redhat7.3 box with Apache2.0 and integrated Tomcat4.0 to handle the servlets used in the site. Yesterday I finished installing Oracle 9i Enterprise edition on the machine (I need a simple single table database that I will be able to access through the servlets). I am a bit overwhelmed by all the info out there that I really don't know where to start, so my questions are:
    1: "What do I do to make the database?"
    2: "How do I access the database, should I use the Thin or the OCI driver?"
    3: "Are there any examples around to do the above?"
    In general I mainly need to know where to go from here and if there may be any resources around to help a newbie like myself.
    Thanks again,
    Rick.

Maybe you are looking for

  • How to hook up Mac mini w Samsung Le37R82BX tv?

    Hi, I'm planning to purchase a Mac mini and use it with my Samsung LE-37R82BX LCD TV. Detailed specifications for the TV: http://www.zigzag.am/product.php?id=0147922 The questions I have before committing to buy: 1) Can I hook up the mini with the TV

  • Weird image in System preferences

    Hi, I have a weird image in the System Preferences. It is actually an image of a switch on top of the Startup Disk icon. How do I remove the weird image? I have tried to restart my Mac and update the software but that does not help. Please help. STAN

  • Slow typing input

    Hi. I put a Microsoft Word file in my Dropbox then opened it in Pages on my iPad. It is about 7 pages long with many bullet points. When I am editing the file in Pages the typing input is terribly slow, I can type an entire sentence before it appears

  • Why when i try to install adobe photoshop 13 they dont recodnise my password

    why when i try to install adobe photoshop 13 the don't recodnise my password

  • Dynamic labelling the buttons

    Hi, I have 10 departments and every department has different number of sub-departments. Users will select a particular department to run a report showing summary of the department and tabs or buttons for all the subdepartments available under that de