Send Vector class to JSP and print this Vector using JSTL

Hello All!
I need your help to solve my question.
I developed a Servlet + jsp application.
I tested it in local with Apache Tomcat/6.0.20 and it works correctly.
I write and use these classes:
class for execute query, and including data page:
package MySQL;
* To change this template, choose Tools | Templates
* and open the template in the editor.
import java.util.*;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
* @author initmax
public class MySQLQuery {
    private Connection CurrentConnect; //obj for connect to databae
    private Vector VectorPageObj = new Vector(); //save array object page, after execute query
public MySQLQuery() {}
//constructor accept current conection database
public MySQLQuery(Connection CurrentConnectBase)
    CurrentConnect = CurrentConnectBase;
//method accept name table and return all info on this table
public void SelectAllField(String NameTable)
       try
         Statement st = CurrentConnect.createStatement();
         String query = ("select * from "+NameTable);
         ResultSet resultQuery = null;
         resultQuery = st.executeQuery(query);
//step in cycle after execution query, and create Vector object
           while (resultQuery.next())
              GenPageMySQL PageObj = new GenPageMySQL();
              PageObj.setId(resultQuery.getInt("id"));
              PageObj.setTheme(resultQuery.getString("theme"));
              PageObj.setPage(resultQuery.getString("page"));
              VectorPageObj.add(PageObj); //add obj in tail vector
       catch (SQLException e) {
         e.printStackTrace();
    *@set the CurrentConnect
    public void setConnection(Connection CurrentConnectBase) {
         CurrentConnect = CurrentConnectBase;
    *@get Vector object "Vector created after execute query"
     public Vector getVectorPageObj(Connection CurrentConnectBase) {
         return VectorPageObj;
}start Servlet class:
import java.util.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import MySQL.*;
public class indexServlet extends HttpServlet {
    private  String getpage;
    //Connected MySQL
    private MySQLConnect MySQLConnectObj = new MySQLConnect();
    private MySQLQuery MySQLQueryObj = new MySQLQuery();
    public void init(){
          MySQLConnectObj.DownloadDriver();
          MySQLConnectObj.Connected();
          //Use current connection, for execution query
          MySQLQueryObj.setConnection(MySQLConnectObj.GetConnection());
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException, NullPointerException  {
  //      init();
        PrintWriter out = response.getWriter();
//GET case useer
      getpage = request.getParameter("page");
      out.print("MySQLConnectObj.GetConnection() = "+MySQLConnectObj.GetConnection()); 
//Check curent connect to database
      if(MySQLConnectObj.GetConnection() != null)
           MySQLQueryObj.SelectAllField("up_menu");//execution query
           MySQLConnectObj.DisConnected();
            request.setAttribute("up_menu_theme",MySQLQueryObj.getVectorPageObj(null));
            RequestDispatcher Dispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/index.jsp");
            Dispatcher.forward(request, response);
      else if(MySQLConnectObj.GetConnection() == null){
            init() ;
        out.print("MySQLConnectObj.GetConnection() = "+MySQLConnectObj.GetConnection());
//        MySQLConnectObj.DisConnected();
}I forward Vector "MySQLQueryObj.getVectorPageObj(null)" to JSP, how I can print data vector using JSTL?

your right, I learn Java however this very Interesting!
I change code, change Vector on List
class MySQLQyery:
package MySQL;
* To change this template, choose Tools | Templates
* and open the template in the editor.
import java.util.*;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
* @author initmax
public class MySQLQuery {
    private Connection CurrentConnect; //obj for connect to databae
public MySQLQuery() {}
//constructor accept current conection database
public MySQLQuery(Connection CurrentConnectBase) {
    CurrentConnect = CurrentConnectBase;
//method accept name table and link on List, after work return all info on this table inside List
public List<GenPageMySQL> selectAllField(String NameTable, List<GenPageMySQL> ListPageObj) {
       try {
         Statement st = CurrentConnect.createStatement();
         String query = ("select * from "+NameTable);
         ResultSet resultQuery = null;
         resultQuery = st.executeQuery(query);
//step in cycle after execution query, and create Vector object
           while (resultQuery.next()) {
              GenPageMySQL PageObj = new GenPageMySQL();
              PageObj.setId(resultQuery.getInt("id"));
              PageObj.setTheme(resultQuery.getString("theme"));
              PageObj.setPage(resultQuery.getString("page"));
              ListPageObj.add(PageObj); //add obj in tail vector
       catch (SQLException e) {
         e.printStackTrace();
       return ListPageObj;
    *@set the CurrentConnect
    public void setConnection(Connection CurrentConnectBase) {
         CurrentConnect = CurrentConnectBase;
  List<GenPageMySQL> ListPageObj;
            //get List<RowObject>
            ListPageObj = MySQLQueryObj.getListPageObj();
  out.print("Size Page objects = "+ListPageObj.size());
            request.setAttribute("upMenu",ListPageObj);
            RequestDispatcher Dispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/index.jsp");
            Dispatcher.forward(request, response);string out.print("Size Page objects = "+ListPageObj.size()); == worked, I get count objects correct
How I can output fields Object GenPageMySQL in JSTL?
writing so:
         <c:out value="hello, Max" />
         <c:out value="${10+20/2}" />
         <c:forEach items="${upMenu}" var="Object" >     
               <c:out value="${Object.getId}"> </c:out>
         </c:forEach>
    </body>
</html>but get error:
org.apache.jasper.JasperException: An exception occurred processing JSP page /WEB-INF/jsp/index.jsp at line 36
33:          <c:forEach items="${upMenu}" var="Object" >
34:         
35:                 
36:                <c:out value="${Object.getId}"> </c:out>
37:
38:    
39:          </c:forEach>
Stacktrace:
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:505)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:416)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     indexServlet.doGet(indexServlet.java:49)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)How I can in output print fields my Object?
Thank you for your help.

Similar Messages

  • Regarding Vector classes in JSP

    Hello,
    Where we actually use the vector classes in jsp page.Is there any necessary to use Vector classes in jsp programs instead of database.Or is there any conditions like here we have use vector instead of DataBase.

    JSP pages are part of the "view" layer in the MVC design pattern.
    As such, it is advisable to seperate them from the model/control layer. For this reason, database code in a JSP page is undesirable.
    The controller normally queries the model, places the results into a collection/vector, makes them available to the jsp page. All the jsp page knows is that it gets the collection - nothing about where it came from or how the model is accessed.
    It is not NECESSARY to do so. You can easily put SQL statements, and scriptlets into your JSP pages. But keeping that stuff out makes for more easily understood and maintainable web applications.
    Cheers,
    evnafets

  • Problems with capturing and printing-to-tape using FCP4

    Having trouble logging footage and printing to video using FCP4.
    1) When we log-in footage (capture) it constantly stops and says, "dropped frames". This usually happens after 10-15 minutes of logging-in footage. Why is this happening??
    2) When we Print-To-Tape, it will suddenly stop! Sometimes it will continue Printing-To-Tape, but without audio!
    Is this a common problem? Should we re-install FCP4?
    We've done all the software updates, but we're still experiencing these problems. We've also cleared up our computer by deleting old FCP4 projects.
    We have a G4 with three internal Hard Drives with approx 180GB each. We're using the Sony DSR-11 as our Mini-DV deck.
    Help!!!!

    We don't have Virex or Norton software in the machine. We have Disk Warrior which was helpful in the past with other problems. Should I run another check using Disk Warrior?
    We only have one machine which has three internal drives. We've experienced the same problems using each of the drives.
    We do have some video stored in the system drive, but normally we don't use that drive. The system drive currently has 70GB availble, as do each of the other internal drives.
    We have updated our FCP to 4.5, but should we trying re-installing it?

  • My Toshiba 1TB 2.5 inch External StorE Art HDD doesn't show up in Finder.  The light is on and it hums. Has always worked perfectly and now this. Using it on a 2010 Mac with Snow Leopard 10.6.8

    My
    Toshiba 1TB 2.5 inch External StorE Art HDD doesn't show up in Finder.
    The light is on and it hums. Has always worked perfectly and now this. Using it on a 2010 Mac with Snow Leopard 10.6.8

    tried another cable (from a camera) with no joy. However after turning off TM and searching for the EHD and not finding it, I revisited Disk Utility and can 'see' it there. The bad news is that it says,
    Verifying volume “Toshiba 1TB”
    Checking Journaled HFS Plus volume.
    Invalid extent entry
    The volume   could not be verified completely.
    Error: This disk needs to be repaired. Click Repair Disk.
    Verify and Repair volume “Toshiba 1TB”
    Checking Journaled HFS Plus volume.
    Invalid extent entry
    The volume   could not be verified completely.
    Volume repair complete.Updating boot support partitions for the volume as required.Error: Disk Utility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files."

  • HT1386 I don't want to sync my photos.  I can turn off everything else but the photo's and it this is using up all my memory.  How do I shut off photo sync when I plug in my iPhone?

    I don't want to sync my photos.  I can turn off everything else but the photo's and it this is using up all my memory.  How do I shut off photo sync when I plug in my iPhone?

    Open itunes, connect iphone, go to photos tab select what you like, sync

  • Create OutputFile in jsp and write this file to response

    Hello
    Please can you help me
    I need to dynamically create a file in jsp and send this file to user
    Please help

    Don't forget to set the contentLength. Some clients/applications will refuse to run/open the file otherwise.
    At the bottom of this article you can find several reuseable downloadFile() utility methods: http://balusc.xs4all.nl/srv/dev-jep-pdf.html
    I'll copypaste them here:
    package net.balusc.util;
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.net.URLConnection;
    import javax.servlet.http.HttpServletResponse;
    public class HttpServletUtil {
         * Send the given file as a byte array to the servlet response. If attachment
         * is set to true, then show a "Save as" dialogue, else show the file inline
         * in the browser or let the operating system open it in the right application.
         * @param response The HttpServletResponse to be used.
         * @param bytes The file contents in a byte array.
         * @param fileName The file name.
         * @param attachment Download as attachment?
        public static void downloadFile(HttpServletResponse response, byte[] bytes, String fileName, boolean attachment) throws IOException {
            // Wrap the byte array in a ByteArrayInputStream and pass it through another method.
            downloadFile(response, new ByteArrayInputStream(bytes), fileName, attachment);
         * Send the given file as a File object to the servlet response. If attachment
         * is set to true, then show a "Save as" dialogue, else show the file inline
         * in the browser or let the operating system open it in the right application.
         * @param response The HttpServletResponse to be used.
         * @param file The file as a File object.
         * @param attachment Download as attachment?
        public static void downloadFile(HttpServletResponse response, File file, boolean attachment) throws IOException {
            // Prepare stream.
            BufferedInputStream input = null;
            try {
                // Wrap the file in a BufferedInputStream and pass it through another method.
                input = new BufferedInputStream(new FileInputStream(file));
                downloadFile(response, input, file.getName(), attachment);
            } catch (IOException e) {
                throw e;
            } finally {
                // Gently close stream.
                if (input != null) {
                    try {
                        input.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
         * Send the given file as an InputStream to the servlet response. If attachment
         * is set to true, then show a "Save as" dialogue, else show the file inline
         * in the browser or let the operating system open it in the right application.
         * @param response The HttpServletResponse to be used.
         * @param input The file contents in an InputStream.
         * @param fileName The file name.
         * @param attachment Download as attachment?
        public static void downloadFile(HttpServletResponse response, InputStream input, String fileName, boolean attachment) throws IOException {
            // Prepare stream.
            BufferedOutputStream output = null;
            try {
                // Prepare.
                int contentLength = input.available();
                String contentType = URLConnection.guessContentTypeFromName(fileName);
                String disposition = attachment ? "attachment" : "inline";
                // Init servlet response.
                response.setContentLength(contentLength);
                response.setContentType(contentType);
                response.setHeader("Content-disposition", disposition + "; filename=\"" + fileName + "\"");
                output = new BufferedOutputStream(response.getOutputStream());
                // Write file contents to response.
                while (contentLength-- > 0) {
                    output.write(input.read());
                // Finalize task.
                output.flush();
            } catch (IOException e) {
                throw e;
            } finally {
                // Gently close stream.
                if (output != null) {
                    try {
                        output.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
    }

  • How to pass arraylist of object from action class to jsp and display in jsp

    I need to do the following using struts
    I have input jsp, action class and action form associated to that. In the action class I will generate the sql based on the input from jsp page/action form, create a result set. The result set is stored as java objects in a ArrayList object.
    Now I need to pass the arraylist object to another jsp to display. Can I put the ArrayList object in the request object and pass to the success page defined for the action? If this approach is not apprpriate, please let me know correct approach.
    if this method is okay, how can I access the objects from arraylist in jsp and display their property in jsp. This java object is a java bean ( getter and setter methods on it).
    ( need jsp code)
    Can I do like this:
    <% ArrayList objList = (ArrayList)request.getattribute("lookupdata"): %> in jsp
    (***I have done request.setattribute("lookupdata", arraylistobj); in action class. ***)
    Assuming the java object has two properties, can I do the following
    <% for (iint i=0. i<objList.size;I++){ %>
    <td> what should i do here to get the first property of the object </td>
    <td> what should i do here to get the first property of the object </td>
    <% }
    %>
    if this approach is not proper, how can I pass the list of objects and parse in jsp?
    I am not sure what will be the name of the object. I can find out how many are there but i am not sure I can find out the name
    thanks a lot

    Double post:
    http://forum.java.sun.com/thread.jspa?threadID=5233144&tstart=0

  • Passing Arrylist from action class to jsp and parsing in jsp

    I need to do the following using struts
    I have input jsp, action class and action form associated to that. In the action class I will generate the sql based on the input from jsp page/action form, create a result set. The result set is stored as java objects in a ArrayList object.
    Now I need to pass the arraylist object to another jsp to display. Can I put the ArrayList object in the request object and pass to the success page defined for the action? If this approach is not apprpriate, please let me know correct approach.
    if this method is okay, how can I access the objects from arraylist in jsp and display their property in jsp. This java object is a java bean ( getter and setter methods on it).
    ( need jsp code)
    Can I do like this:
    <% ArrayList objList = (ArrayList)request.getattribute("lookupdata"): %> in jsp
    (***I have done request.setattribute("lookupdata", arraylistobj); in action class. ***)
    Assuming the java object has two properties, can I do the following
    <% for (iint i=0. i<objList.size;I++){ %>
    <td> what should i do here to get the first property of the object </td>
    <td> what should i do here to get the first property of the object </td>
    <% }
    %>
    if this approach is not proper, how can I pass the list of objects and parse in jsp?
    I am not sure what will be the name of the object. I can find out how many are there but i am not sure I can find out the name

    Double post.
    http://forum.java.sun.com/thread.jspa?threadID=5233144&tstart=0

  • Conflict sending booking form with jsp and fmt:message key=

    I have developed my new web page using jsp and together with this i am using jBoss 4.0.5.GA!
    The web page has 6 different languages so i have used the <fmt:message key=" " /> tag system for each language.
    On the web page there are a booking form who has two pages, bookings.jsp and booking_sent.jsp.
    The problem i have is when i send the form it opens a page where you only see all the tags, no text at all. For more information follow this link and try out the form; http://www.neptunediving.com/neptune/general/bookings.jsp/
    bookings.jsp and booking_sent.jsp looks exactly the same, except the header text. There most be some sort of conflict here, either with the <fmt:message key=" " /> tag system or maybe with the String message i use to retrieve the information from the form. Both <fmt:message key=" " /> tag system and the String message use the word message so i have tried to change the String message to String msg instead but i still get the same result.
    I have tried everything but i cannot solve this problem. So i wonder if there is anybody out there who can help me with this?

    Nope, can't delete posts on this forum,
    I have developed my new web page using jsp. I have done a booking form,
    There are two pages, bookings.jsp and booking_sent.jsp.
    The page has 6 different languages so i have also used the <fmt:message key=" " /> tag system for each language.
    The problem i have is when i send the form it opens a page where you only see all the tags, no text at all.
    For more information follow this link and try out the form; http://www.neptunediving.com/neptune/general/bookings.jsp/
    When you fill out the form and click send you should come to booking_sent and you do but the page is only full of tags, no text. Booking_sent looks exactly the same as bookings, except the header so why should not this work. I have tried everything but i cannot solve this problem. So i wonder if there is anybody out there who can help me with this?
    Tried going to that URL and got an error page served by Apache Webserver
    Maybe you haven't got the correct connector going between the webserver and the application server?

  • Sending an email through JSP and WML

    I am trying to send an email through jsp in wml, i think i have everything set up properly with regards to tomcat however I keep getting the error
    "Invalid element 'PCDATA' in context of card expected on event ....."
    The line of code in which this occurs is           
    <jsp:setProperty name="mailer" property="*"/>
    I was wondering if anyone would be able to help me with this and be able to tell me why it thinks this is PCDATA and not jsp code.
    Any help would be much appreciated.

    Check out:
    http://jakarta.apache.org/taglibs/index.html

  • HT4356 I no longer have the option to share and print.  It used to be there but no longer but it is still available with other apps, eg, Pages.  Any solution?

    I no longer have the option to share and print in Numbers.  It used to be there as I have printed from it in the past but it has disappeared! I also use Pages and the option is still there with that app.  Does anyone have solution to this?

    I really don't understand.
    The menu item is available :
    Maybe, you didn't activate the tool :
    Yvan KOENIG (VALLAURIS, France) mardi 2 août 2011 23:10:17
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How to create and print contact sheet using photoshop elements 10?

    how to create and print contact sheet with photoshop 10?

    Which operating system are you using?
    On a windows system you can use the Organizer
    http://www.dummies.com/how-to/content/how-to-print-contact-sheets-in-photoshop-elements-.h tml
    On a Mac, File>Contact Sheet II within the pse 10 editor

  • Can java class return boolean and print to page ?

    Hello all
    i trying to understand simple concept in jsp/servlets
    i like to build class that has method that returns boolean value , but also
    print string to jsp page i have this :
    public class Env {
    public static boolean getName(){
    out.println("test") \\ this print doesn't work what does?
    return true;
    } thanks

    Hello and thanks for the fast reply , one thing i can't do (application reason)
    is to pass parameter to the method , i need to find some solution .
    i tried to do :
    public  class Env {     
         public static boolean getName() throws IOException{          
              javax.servlet.http.HttpServletResponse  res = null;     
              java.io.PrintWriter  out =  res.getWriter();
              out.println("test!!!");
              out.close();
              return true;
    }but with no luck im geting this error :
    java.lang.NullPointerException
         org.eclipse.wtp.sample.envtest.Env.getName(Env.java:11)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:54)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    is there any way to do it witout passing param?
    thanks

  • Vector class, insertElementAt() method and JComboBox

    Hi guys,
    I am using a vector called vectorSquare. I have an (Square)object in each component. When I run the program, depending on how many squares the user chooses, the combobox size will be vectorSquare.size(). Everything is all right. But if the user reenter data for one of the square, I think the vectorSquare.size() increases 1. Using vSquares.insertElementAt(temp, comboBox.getSelectedIndex()); when the user enters the data works OK, but if the user wants to change and reenter the data of a square, the new solution will be through the getSelectedIndex()) giving by the JComboBox. Instead, the past result will keep displaying, in getSelectedIndex() + 1 index. I don't know why. I thought insertElementAt() inserts new data but delete the past one, but it doesn't seem at all. Thats why I have decided to delete the past entering. But doing that, it compiles but now doesn't run, and gives an error to me here:
    --> if (vSquares.elementAt(comboBox.getSelectedIndex()) != null) {
    At the beginning I used:
    vSquares.insertElementAt(temp, comboBox.getSelectedIndex());
    But it overwrites, so I now use this:
    if (vSquares.elementAt(comboBox.getSelectedIndex()) != null) {
         vSquares.removeElementAt(comboBox.getSelectedIndex());
         vSquares.insertElementAt(temp, comboBox.getSelectedIndex());
    But it doesnt run as I said above.
    Anybody knows what I could do to work it out?
    Thank you.

    Hi, its me again. I am checking and it still doesn't work. I have tried these different ways and I dont know whats going on??????
    vSquares.insertElementAt(temp,comboBox.getSelectedIndex());
    vSquares.removeElementAt(comboBox.getSelectedIndex()+1);
    ++++++++++++++++++++++
    vSquares.setElementAt(temp,comboBox.getSelectedIndex());
    /++++++++++++++++++++
    int p = comboBox.getSelectedIndex();
    vSquares.removeElementAt(p);
    vSquares.insertElementAt(temp,p);
    ++++++++++++++++++++++++
    int p = comboBox.getSelectedIndex();
    vSquares.setElementAt(temp,p);

  • JSP and Servlets - when to use which?

    Greetings,
    I am a software developer with a very good understanding of Java. I build web applications, console applications, server/client apps, gui apps, what have you.. Web development with Java seems so dynamic now, that I can't seem to keep up with it. I have a simple style of developing web apps with java. Basically I create Java DTO(Data Transfer Object) classes that will perform in the backend and talk to a database using JDBC, or write to file, or read from file, what have you. I develop JSP pages that produce the proper HTML based on what a user wants to see. I may create some functionality in the DTOs that will pass along certain data. Sometimes the JSP can get a little sloppy due to the nature of the app. I create forms that collect information using JSP/HTML and I create JSP pages that will extract the form data from the form page and then send that data to the DTOs for further processing. I am not creating any classes that implement or extend HttpServlet and this is starting to bother me. Is this more the accepted way of developing Java Web Apps? What could you consider these DTOs I am creating? Can these be considered servlets? I compile the classes and use them as if they were a servlet, but they really aren't right? I am not sure and I need to catch up with what's going on in the real world. This is the unfortunate part of never having anyone to mentor you. I feel like I am falling behind. What about the newer technologies emerging - Struts, Tiles, JSF, what have you.. Could these possibly be replacing the functionality of Servlets? Thanks for listening...
    takizzle

    There's no reason to slam anyone that's asking advice on a HELP FORUM.
    anyway, that aside-
    I usually use JSPs for presentation and show database views with them. take for example a shopping basket application, you would have a custom tag that would loop through the contents of the customer's shopping cart and display them.
    however when the customer was filling out thier information the form would point at a servlet that would handle the logic and processing.
    that's the diff- user servlets to handle logic and JSPs to handle presentation.
    cheers, and good luck :)

Maybe you are looking for

  • Regd Workflow for a new custom page

    HI , We have created 2 pages for some functionality where in user can login n serach for a person and update certain attributes like his source/company, assignment category etc. First page he can searach the person and after search results come in, h

  • Windows 8.0 and Windows 10 technical review installation issues and activation message keeps poping up?

    My Dell Inspiron E1705 had Windows Vista and I could not install the Windows 10 technical review, so I installed my Windows 8.0 and then I could install the Win10 tech review.So I'm reviewing the Win10 and now I keep getting a pop up screen with Wind

  • Date [deprecation] -- what other method?

    Hi I was using somethine like this in my code:      Date fecha2 = new Date(2009,4,24,20,30);And compiler, like java api 6, says that that method is deprecated. I want to get an object of Date type, so i dont know what other method i can use to have t

  • Normal scheduler behavior?

    I created a schedule to run a job every two minutes. BEGIN   SYS.DBMS_SCHEDULER.DROP_JOB     (job_name  => 'GAFF.DATEEVERY2MINS'); END; BEGIN   SYS.DBMS_SCHEDULER.CREATE_JOB        job_name        => 'GAFF.DATEEVERY2MINS'       ,start_date      => NU

  • Export command missing in imovie 11 upgrade?

    In the latest upgrade for iMovie 11' there is no "export to QuickTime" or other way to set your preferred export settings? can anyone explain how to do this now?