UploadedFile component - af:inputFile to upload blob Errors - help needed

Hi,
I am working with JDev, Toplink, and ADF Faces. I am using the af:inputFile component to read in a pdf file which I want to save as a blob into my oracle DB.
This is the code on the jspx page:
<af:inputFile label="Label 1"
binding="#{backing_app_ATBlobs1.inputFile1}"
valueChangeListener="#{backing_app_ATBlobs1.fileUploaded}"
id="inputFile1" columns="40"/>
<af:commandButton text="commandButton 1"
binding="#{backing_app_ATBlobs1.commandButton1}"
id="commandButton1"/>
The following is my code in the backing bean:
public void fileUploaded(ValueChangeEvent event) {
UploadedFile file = (UploadedFile)event.getNewValue();
if (file != null && file.getLength() > 0) {
FacesContext context = FacesContext.getCurrentInstance();
FacesMessage message =
new FacesMessage(JSFUtils.getStringFromBundle("srmain.srfileupload.success") +
" " + file.getFilename() + " (" +
file.getLength() + " bytes)");
context.addMessage(event.getComponent().getClientId(context),
message);
FileInputStream fis;
fis = null;
try {
fis = new FileInputStream((File)file);
catch (FileNotFoundException ex)
System.out.println("f2: Oops, FileNotFoundException caught");
finally
System.out.println("f2: finally block");
PreparedStatement pstmt =
cm.getCon().prepareStatement("INSERT INTO BLOBS (BLOB_ID, PROCUR_ID, PF_NUM, DOCUMEN, FILENAME_TXT) " +
"VALUES ('" + BLOB_SEQUENCE.NEXTVAL + ",1, 2, ?, " + file.getFilename() + ")");
pstmt.setBinaryStream(1, fis, (int)file.length());
pstmt.executeUpdate();
Following are the errors:
Name cm Not Found
Method getCon Not Found
Method prepareStatement Not Found
Method length() Not Found
Name BLOB_SEQUENCE.NEXTVAL Not Found, BLOB_ID is sequentially generated.
Exception Not handled: java.sql.SQLException for these lines:
pstmt.setBinaryStream(1, fis, (int)file.length());
pstmt.executeUpdate();
I am not very sure about coding the values for the insert statement. Any help would be appreciated. Thanks!
Lin

Hi,
I got some of the errors taken care of, but I have some questions.
Below is my code:
public void fileUploaded(ValueChangeEvent event) {
// Add event code here...
UploadedFile file = (UploadedFile) event.getNewValue();
if (file != null)
FacesContext context = FacesContext.getCurrentInstance();
FacesMessage message = new FacesMessage( "Successfully uploaded file " + file.getFilename() + " (" + file.getLength() + " bytes)");
context.addMessage(event.getComponent().getClientId(context), message);
// Here's where we could call file.getInputStream()
InputStream fis;
fis = null;
try {
fis = file.getInputStream();
catch (FileNotFoundException ex)
System.out.println("FileNotFoundException caught");
} catch (IOException e) {
// TODO
System.out.println("IOException caught");
finally
System.out.println("finally block");
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
catch (ClassNotFoundException ex) {     
System.out.println("ClassNotFoundException caught");
// DriverManager.registerDriver(new OracleDriver());
try {
Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@oradev2.tceq.state.tx.us:1521:sand3", "kding", "kd5469");
PreparedStatement pstmt =
conn.prepareStatement("INSERT INTO BLOBS (BLOB_ID, PROCUR_ID, PF_NUM, DOCUMEN, FILENAME_TXT) " +
"VALUES (?,?,?,?,?)");
int blob_id;
blob_id = BLOB_SEQUENCE.NEXTVAL;
String filename = file.getFilename();
pstmt.setInt(1, blob_id);
pstmt.setString(2, "1");
pstmt.setString(3, "2");
pstmt.setBinaryStream(4, fis, (int)file.getLength());
pstmt.setString(5, filename);
pstmt.executeUpdate();
catch (SQLException e) {
// TODO
System.out.println("SQLException caught");
I am unable to get the value for the blob_id which is sequentially generated. The error is in this line:
blob_id = BLOB_SEQUENCE.NEXTVAL;
Another question:
Can someone tell me how to display variable in JDeveloper. I tried System.out.println - but I think this is for command line printing?
Thanks for the assistance.
Lin

Similar Messages

  • AE CS4 Error Help Needed!!

    Hey  I get 3 errors everytime Ii run AE.
    1- failed to create process default activation context
    2- Microsoft C++ Runtime Library Runtime Error!! Error Code R6034 - An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team fow more information.
    3- Microsoft C++ Runtime Library Runtime Error!! Error Code R6030 - CRT not initialized. 
    Please Need Help!!

    83 :: xx are all resource errors, many times related to fonts as listed on my site. The logical conclusion therefore is that you have changed something outside AE, that is added a rubbish font or updated an external component like Quicktime. Still, as the others said, it's miraculous AE runs/ ran at al lon your system and you were actually able to use it.
    Mylenium

  • Eclipse error | Help needed badly

    Hi,
    My Eclipse was working properly a couple of days back but suddenly It's stopped working and gives me an error : "workspace does not contain a main type,Do you have a public void run method"
    Now,I think the problem Is some how the jar's that I'm trying to upload aren't getting uploaded.
    I say this because a strange problem has arised and I think this might have to do with Eclipse giving the above error.
    This Is what I do to create a new java project
    -Open eclipse
    -save files to workspace
    -click on new > java project
    -Then,give the project a name and then click finish
    -after that I create a new class by right clicking on the project folder > new > class >give the class a name and then click finish.
    -after that I open workspace(thats on my desktop) click on the project folder make a new folder name It "lib" and upload the jar that I need for the project.
    -after this I go back Into eclipse and right click on the project folder and hit refresh,now I see the folder"lib" containing the jar Inside It.
    -I right click on the jar file and select "add to build path",and now theres the Issue comes In.
    I want the jar to Into the reference librarys,because the last time I got the jar In the reference library It worked.
    But this time I can't even manage to find where the reference library Is.
    so when I click on add to build path the jar Instead of appearing in the reference library (which Isn't there) just dissapears.
    I really need to fix this,because I cant test and write code until Its fixed.
    heres a snapshot of how my eclipse framework looks : [http://www.flickr.com/photos/38561743@N03/4122304046/sizes/o/]
    I tried to solve this on my own for hours and hours but It just Isn't working.
    please guys help,I need to solve this.
    Thanks,
    Edited by: Parastar on Nov 21, 2009 7:26 AM
    Edited by: Parastar on Nov 21, 2009 7:27 AM

    Parastar wrote:
    okay guys,I'v tried the eclipse forums for about 24 hours now.
    but no response,those guys are really really slow.
    please,some one here help me out.Quit begging. You've already been told this is not the place for this question. You're complaining about not getting an answer there, and begging people here to answer, as if that vindicates your decision to post here in the first place. But you haven't gotten your solution here either. Which is worse--no answer there, or a bunch of answers that don't help you here?

  • Adobe Illustrator CS4 [TAdd] Error HELP NEEDED!

    I recently restored my HP Workstation and began the process of installing Adobe CS4. Everything seemed to be going smoothly until I clicked both Adobe Illustrator and Adobe Acrobat.
    Adobe Illustraitor presents the [TAdd] Error while it is loading up the font menu during it's opening.
    I've been looking all over for answers and so far haven't found any. Please help!
    Thanks

    I'm not sure about the [TAdd] error, but if it's crashing while loading fonts, it's likely to be corrupt font caches.
    http://www.illustratorhints.com/2010/05/cleaning-your-font-cache/
    If that doesn't help, then you can always try deleting your illustrator preferences, as they get corrupt from time to time as well.
    http://www.illustratorhints.com/2010/05/delete-preferences-file/

  • Bom And Routing Import interface errors Help needed

    Hi All,
    I am using bom and Routing Interface to load the Bom and Routing Header.papulating the BOM_INVENTORY_COMPS_INTERFACE,BOM_OP_SEQUENCES_INTERFACE,and BOM_OP_RESOURCES_INTERFACE tables BOM header and Components are created sucessfully but routing is failed with process flag 3.the errorr i am getting is You cannot update or delete operation sequences when there is no routing for the assembly item &ASSEBLY_ITEM_NAME. (ASSEMBLY_ITEM_NAME=TESTITEMBOM) (ORGANIZATION_CODE) and
    This record received an error status since a severe error occurred in the operation sequence 10 while performing user unique index conversions."
    please let me know any api is avilable to load ROUTING Components
    Thanks in advance

    Hi,
    Try following
    step 1. Insert routing header (bom_op_routings_interface) : Run Interface
    step 2. Insert routing lines (bom_op_sequences_interface) with correct reference to routing_sequence_id: Run Interface
    step 3. Insert all resource lines (bom_op_resources_interface) with correct reference to operation_sequence_id, routing_sequence_id , Run Interface.
    Thanks,
    Hrishi

  • Evaluating PDF Assembler and getting the following errors - Help needed

    I am having following three issues when merging document using PDF Assembler Service:-
    Error # 1 (JobID: 20369)
    System.ServiceModel.FaultException: Caused by: com.adobe.livecycle.assembler.client.ProcessingException: ALC-ASM-S00-002: Failed to execute the DDX - error messages provided. Caused by: com.adobe.internal.pdfm.assembly.AssemblyException: PDFM_S02013: The "insertDocument" operation failed on "137.pdf".; nested exception is:
    com.adobe.livecycle.assembler.client.ProcessingException: ALC-ASM-S00-002: Failed to execute the DDX - error messages provided.
    Error # 2 (JobID: 19966)
    System.ServiceModel.FaultException: Caused by: com.adobe.livecycle.assembler.client.ProcessingException: ALC-ASM-S00-002: Failed to execute the DDX - error messages provided. Caused by: com.adobe.internal.pdfm.assembly.AssemblyException: PDFM_S02013: The "insertDocument" operation failed on "1033.pdf".; nested exception is:
    com.adobe.livecycle.assembler.client.ProcessingException: ALC-ASM-S00-002: Failed to execute the DDX - error messages provided.
    Error # 3 (JobID: 19419)
    The request channel timed out while waiting for a reply after 00:09:59.9920000. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.

    "Illegal start of expression" and "} expected" usually mean that your brackets don't match. Indeed, your declaration of the main method is missing a '}':public static void main (String[] args)
    { // where's the '}' that goes with this one?this list of common compiler error messages and possible causes is a good resource: http://www.mindprod.com/jgloss/compileerrormessages.html

  • ORA 12170 : Connection timeout error : Help needed

    Hi,
    The scenario is as follows: I have Oracle 11g R2 installed on a Windows Server 2008 (32-bit) server. The database SID is 'PGMS'. I am accessing (or want to access remotely) the Oracle database from the Visual Studio 2008 development environment (client environment) running on a Windows XP (SP3) platform. I have already installed the ODAC (Ver. 11.2.0.2.1) package for the Visual Studio environment.
    I have created a sample Windows Forms application that uses the Oracle data access components. The sample schema HR in the Oracle database has already been unlocked. This is the schema that I am using in the application.
    The issue that I am facing is that when I am adding the data connection in the Visual Studio environment; 'Test Connection' functionality returns the following error: ORA-12170 ... Connection timed out.
    I have checked the TNSNAMES.ORA file, and everything is as is mentioned in the Oracle documentation. It is as follows:
    PGMS=
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.161)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PGMS)
    Kindly request the community to help me out in overcoming the error and in making the connection successfully. We have a System administrator but not a database administrator. The Oracle installation has been done by me.
    Thanks,
    Renj
    ----------

    Sunny, it's as follows:
    (1) SQLNET.ORA file contents are as follows:
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    (2) LISTENER.ORA file content are as follows:
    # listener.ora Network Configuration File: C:\app\Administrator\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Administrator\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.161)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\Administrator
    Edited by: Renjith2 on May 9, 2011 3:17 PM
    Edited by: Renjith2 on May 9, 2011 3:22 PM

  • Snapshot too Old Error - Help needed

    One of the batch job is failing due to oracle error “snapshot too old.”
    Please let me know what are the possible reason’s this problem occurs and suggest me the possible solutions to rectify this problem.
    Thanks in advance

    > this can mean different things:
    1. your rollback / undo is too small for this
    transaction,
    Incorrect. A snapshot too old means that a consistent read cannot be maintained. A read is not a transaction - it does not cause any locks on rows.
    What is can mean that rollback is too small to maintain a consistent read for a sufficiently long enough period for the consistent read to be completed.
    > 2. commits aren't made often enough,
    NOT TRUE!! Not in Oracle. (sorry for the emphatic bold, but this an OWT within Oracle - it is very far from the truth in Oracle and Oracle is not SQL-Server)
    > 3. there are concurrent transactions which act on the
    same tables.
    This is usually the case - more accurately, fetching across commits. This is caused by creating a consistent read on a table (opening a cursor in PL/SQL), reading the rows (fetching from cursor in PL/SQL) and then updating those exact same rows.
    The consistent read deals with version n of the table. At the same time the exact same process updates those very same rows creating new versions of those rows.
    Rollbacks are overwritten (it is a circular buffer) and the version n of the rows cannot be maintained and "goes out of scope" as the rollbacks containing that version of the rows are re-used.

  • Error: ORA-12560 TNS : Protocol Error help need urgently

    HI
    i m working on win 2k adv server
    i installed orcale 8i
    and then i started sql plus
    and entered us id and pass : scott / tiger
    and also tried :system / manager
    but i m having this error
    plz tellme how can i solve it
    Error: ORA-12560 TNS : Protocol Error
    plz do it soon
    Nurali
    03002199037

    You're attempting to go across SQL*Net. I'm a unix guy so I can't help very much except to point this out.
    On Unix I'd either undefine the TWO_TASK environmental variable. Probably a reg entry on 2k.
    Or configure Sql*Net.
    Ken

  • PHP error help needed

    I've worked through the Adobe tutorial, "Developing a web
    application with
    Dreamweaver"
    http://www.adobe.com/devnet/dreamweaver/articles/develop_web_application.html).
    Everything works fine until I get to the final step of
    testing the Record
    Insert form be submitting data. When I click the Insert
    record button
    instead of going to the View page I get these errors for each
    form field:
    Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    Access denied for user 'ODBC'@'localhost' (using password:
    NO) in
    F:\Webs\cafe_php\TMPh4f4n13a5b.php on line 8
    Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]: A
    link to the server could not be established in
    F:\Webs\cafe_php\TMPh4f4n13a5b.php on line 8
    The warnings appear on the form page above the page itself.
    When I connected the database to the site the test worked.
    Here are the first 8 lines of code:
    <?php require_once('Connections/connTownsend.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "",
    $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    Any suggestions?
    Walt

    First, thanks for helping.
    2nd, sorry to be so thick, this is all still Greek to me, but
    I have no idea
    where to insert
    with a die($rsInsert_query):
    Here is all the PHP code above the DOCTYPE:
    <?php require_once('Connections/connTownsend.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "",
    $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
    $editFormAction .= "?" .
    htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) &&
    ($_POST["MM_insert"] == "form1")) {
    $insertSQL = sprintf("INSERT INTO comments (FIRST_NAME,
    LAST_NAME) VALUES
    (%s, %s)",
    GetSQLValueString($_POST['FIRST_NAME'], "text"),
    GetSQLValueString($_POST['LAST_NAME'], "text"));
    mysql_select_db($database_connTownsend, $connTownsend);
    $Result1 = mysql_query($insertSQL, $connTownsend) or
    die(mysql_error());
    ?>
    Walt
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Walt - this is a good puzzle.
    >
    > All of your observations suggest that you have adequate
    permissions, yet,
    > this error says you don't -
    >
    >> Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    >> A link to the server could not be established in
    >> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
    >
    > Let's take a look at your insert command - can you trap
    the insert process
    > with a die($rsInsert_query) command, right before the
    actually execution?
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Walt F. Schaefer" <[email protected]> wrote
    in message
    > news:[email protected]...
    >> Murray,
    >>
    >> Here's an Update/Summary:
    >>
    >> 1. I have a MySQL database (localhost) I can see and
    manipulate via
    >> Navicat
    >> 2. In my site (in DW) I created a connection to that
    database. It tested
    >> successfully.
    >> 3. I created a recordset using that database. It
    tested successfully.
    >> 4. On a new page Insert > Application Objects
    > Insert Record > Record
    >> Insertion Form Wizard.
    >> 5. Save page and preview locally in IE6.
    >> 6. Input info in form and click Insert record.
    >> 7. Record IS added to table but every field is Null.
    >> 8. Errors for each form field:
    >> Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    >> Access denied for user 'ODBC'@'localhost' (using
    password: NO) in
    >> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
    >>
    >> Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    >> A link to the server could not be established in
    >> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
    >>
    >> As I can read from the database/table and the Insert
    record form DOES ADD
    >> a record it would seem I am connected to the db just
    unable to add data.
    >>
    >> What have I done wrong?
    >>
    >> Thanks.
    >> --
    >>
    >> Walt
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> OK - I think we will have to solve your database
    connectivity issues
    >>> first. What does your Connections file look
    like?
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>> ==================
    >>>
    >>>
    >>> "Walt F. Schaefer" <[email protected]>
    wrote in message
    >>> news:[email protected]...
    >>>>> LOL - you are interpreting my code MUCH
    too literally. Change this -
    >>>> It's only because I don't have a clue. Hence
    the need to use this
    >>>> beginner's tutorial.
    >>>>
    >>>> I replaced to code as instructed. No
    improvement. Error messages:
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: Access
    denied for user
    >>>> 'ODBC'@'localhost' (using password: NO) in
    >>>> F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: A link
    to the server could not be
    >>>> established in
    F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: Access
    denied for user
    >>>> 'ODBC'@'localhost' (using password: NO) in
    >>>> F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: A link
    to the server could not be
    >>>> established in
    F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>> INSERT INTO comments (FIRST_NAME, LAST_NAME)
    VALUES (NULL, NULL)
    >>>> --
    >>>>
    >>>> Walt
    >>>>
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> LOL - you are interpreting my code MUCH
    too literally. Change this -
    >>>>>
    >>>>> $insertSQL = sprintf("INSERT INTO
    comments (FIRST_NAME, LAST_NAME)
    >>>>> VALUES
    >>>>> (%s, %s)",
    >>>>> GetSQLValueString($_POST['FIRST_NAME'],
    "text"),
    >>>>> GetSQLValueString($_POST['LAST_NAME'],
    "text"));
    >>>>> $insert_rsEmails = sprintf("INSERT INTO
    tblcontactdata SET emailValue
    >>>>> =
    >>>>> %s", GetSQLValueString($filter_rsEmails,
    "text"));
    >>>>> die($insert_rsEmails);
    >>>>> $rsEmails =
    mysql_query($insert_rsEmails, $selectData) or
    >>>>> die(mysql_error()); // insert this email
    into the database
    >>>>>
    >>>>> mysql_select_db($database_connTownsend,
    $connTownsend);
    >>>>>
    >>>>> to this -
    >>>>>
    >>>>> $insertSQL = sprintf("INSERT INTO
    comments (FIRST_NAME, LAST_NAME)
    >>>>> VALUES
    >>>>> (%s, %s)",
    >>>>> GetSQLValueString($_POST['FIRST_NAME'],
    "text"),
    >>>>> GetSQLValueString($_POST['LAST_NAME'],
    "text"));
    >>>>> die($insertSQL);
    >>>>>
    >>>>> mysql_select_db($database_connTownsend,
    $connTownsend);
    >>>>>
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "Walt F. Schaefer"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Murray,
    >>>>>>
    >>>>>> Here's all the PHP code that
    precedes the DOCTYPE *after* inserting
    >>>>>> the code you provided:
    >>>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>
    >>
    >

  • Hierarchy error-help needed

    Hi every1,
         I am still having problem seing my heirarchy in the query that i have created.1 of my info object sales revenue has the conversion routine.And next thing my heirarchy has data in it.for eg:i am doing example from fufu book.which has 3 regions east,west,midwest and each has offices assigned to them and each office has sales rerpresentative name attached to it.
    so,can anyone tell what wrong is happening.I see only free characteristics--custid,matid,calday..and then it says unassigned node..don't see my heirarchy..
    Thanks

    Hi Murali,
    Sorry for the delay!
    Based on the error message, I found this Microsoft KB article which is talking about the similar problem. It has also given some resolution in it. I think you could try it first.
    http://support.microsoft.com/kb/269495
    By the way, this forum is for Excel development questions. If you run into some problems when you manually manipulate the Excel workbook without code,
    Office IT Pro forum is a better place for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Log4j Error - Help needed

    Hi All,
    I am getting this following stack trace when i execute a test on an application on the remote server from the client. THe stack trace is as follows. It says error in the java.lang.NoClassDefFoundError: org/apache/log4j/Layout.... Thanks in advance...
    <24-May-2006 11:50:45 o'clock BST> <Info> <WebLogicServer> <BEA-000213> <Adding address: 10.38.86.71 to licensed client list>
    274.593: [GC 274.594: [DefNew: 15999K->448K(16448K), 0.1619128 secs] 95096K->79829K(148280K), 0.1620925 secs]
    [Pool] : Returning bean from the pool: 'null'
    [StatelessSessionPool] : allocate new: 'com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_Impl@48563c'
    Inside the ULEnrolmentManagerBean ********************* enrolBARegisteredCustomer
    com.ba.cap.framework.corebusiness.utilities.Profiling: capprofiling library loaded
    Inside the ULEnrolmentManagerBean --------------- 1
    <24-May-2006 11:50:50 o'clock BST> <Info> <EJB> <BEA-010051> <EJB Exception occurred during invocation from home: com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_HomeImpl@bb120d threw exception: java.lang.NoClassDefFoundError: org/apache/log4j/Layout
    java.lang.NoClassDefFoundError: org/apache/log4j/Layout
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean.log(ULEnrolmentManagerBean.java:910)
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean.enrolBARegisteredCustomer(ULEnrolmentManagerBean.java:187)
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_EOImpl.enrolBARegisteredCustomer(ULEnrolmentManagerBean_nnzhyo_EOImpl.java:424)
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:492)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:435)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:430)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    >
    [StatelessSessionPool] : Destroying a bean in: 'weblogic.ejb20.pool.StatelessSessionPool@1924ee5 - ejb name: 'com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerHome''

    Hi Murali,
    Sorry for the delay!
    Based on the error message, I found this Microsoft KB article which is talking about the similar problem. It has also given some resolution in it. I think you could try it first.
    http://support.microsoft.com/kb/269495
    By the way, this forum is for Excel development questions. If you run into some problems when you manually manipulate the Excel workbook without code,
    Office IT Pro forum is a better place for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Publish Error:  Help needed, please!

    When I attempt to publish my site changes from iWeb (I am set up to publish to my personal domain), I get the following error:
    "Publish Error
    Can’t create the file “cherub_overlay65.jpg.” The disk may be damaged or full, or you may not have sufficient access privileges."
    I do not have a photo called "cherub-overlay65.jpg." I think this jpg is part of one of the iWeb "themes."
    Any advice? I have published previously and had no problem at all. =(
    Thanks in advance!

    That song maybe Corrupted...
    If you live in a Region that allows re-downloading Music...
    Delete the Song(s) and re-download...
    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519
    If not... Contact iTunes Customer Service
    Apple  Support  iTunes Store  Contact Us

  • Facebook Error - Help Needed

    From the facebook app, version 2.1.0.36, when I access events to see events/birthday I get an error "an error has occured".
    I have deleted an reinstalled no change, there is no issue with web version of facebook. I also done a full wipe of my PB, the previous version does not have this issue, once I update to 2.1.0.36 the error no longer shows up at the first attempt to view after leaving the events area and go back error is back.
    Anyone know what is going on?

    Hi Murali,
    Sorry for the delay!
    Based on the error message, I found this Microsoft KB article which is talking about the similar problem. It has also given some resolution in it. I think you could try it first.
    http://support.microsoft.com/kb/269495
    By the way, this forum is for Excel development questions. If you run into some problems when you manually manipulate the Excel workbook without code,
    Office IT Pro forum is a better place for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Multiplexing error  help needed

    HI,
    I see that I am not alone with this error. I have burned many 1.5 movies with no problems but was stumped this weekend.
    Is there a workaround that can solve the problem? I get the error when I get to the burn stage. I have ilife05 and am worried that this is the problem. Has apple,(or anyone) figured out how to use this program successfully?
    Help, I have another large project pending and would really like to use the ilife program.
    Thanks,
    Jeni

    I've recently had this problem when trying to make a disk image. Make sure you have at least twice the hard drive space as the project takes. I discovered that even though I was trying to create a disk image on an external hard drive with a decent amount of space, my IDVD Project was still on my computer hard drive which did not have twice the capacity of the Project. I copied the IDVD Project to the external hard drive and then was able to make the disk image and to burn a DVD.
    Hope this helps some.
    spb001

Maybe you are looking for

  • Inter-company Inspection plan

    Hello Need your advice in SME Please. We have two company code. We are planning to use one Plant Master inspection charat for the next plant in the Inspection plan . Means same group and same group counter will be used for both the material in the Ma

  • X blacks out... ATI HD3450 with FOSS driver

    Hi everyone! I'm a formal Ubuntu user (was LOTS better that M$ **), I've installed Arch linux now. I'm booting fine (through ubuntu grub2, I'll 'fix' that later on), I love it. It's a clean OS, I'm planning LXDE. I've two users: myself and root. Inst

  • Reading large file with JCA Adapter in OSB

    Hello, We are searching for a solution how to read large file (>50M) from network drive and deliver it to queue via OSB 11gR4 (10.3.4). The problem is when reading the file with JCA File Adapter. It seems that it cannot handle as large files as we ha

  • ALV List by calling SET_TABLE_FOR_FIRST_DISPLAY of CL_GUI_ALV_GRID

    Hi All I want to display the output as a ALV List by calling method SET_TABLE_FOR_FIRST_DISPLAY of CL_GUI_ALV_GRID. I see there is a protected attribute M_BATCH_MODE. How can I set this attribute to be true. Or is there any other option through which

  • Photoshop touch zugriff auf Fotos

    bei meinem ps touch für ipad 2 erscheint immer die Meldung "Dieses App hat keine Zugriff auf ihre lokalen Fotos" obwohl ich bei Einstellungen/Voreinstellungen/Zugriff auf lokale Fotos auf 1stehen habe. Mach ich was falsch? Danke