Using the Insert statement in a Java program without hardcoding the data

hello.
this is james mcfadden. i have developed a program called Demo.java, which is used with another program called QueryTableModel.java (a program that allows data to be viewed in a JTable). The Demo.java program displays a menu, connects to a database, allows the user to add data into the database and allows the user to view data that is already in the database. I have a problem with the Demo.java program. I have hardcoded the Insert statement in it. How do you use the Insert statement to put data into a database without hardcoding the data?
import java.awt.*;//Contains all of the classes for creating user interfaces and for painting graphics and images
import java.awt.event.*;//Provides interfaces and classes for dealing with different types of events fired by AWT components
import javax.swing.*;//Provides a set of lightweight components that, to the maximum degree possible, work the same on all platforms
import javax.swing.table.*;//Provides classes and interfaces for dealing with javax.swing.JTable
import javax.swing.JOptionPane;//provides a class that makes it easy to pop up a standard dialog box that prompts users for a value or informs them of something
import java.sql.*;//Provides the API for accessing and processing data stored in a data source using the Java programming language
public class Demo extends JFrame{
   static String url = "jdbc:odbc:VideoLibrary";//a static variable that allows a connection to be made to a database called VideoLibrary
   static Statement stmt;//a static variable that allows a statement to be made once a connection is set up
   static Connection con;//a static interface that allows a connection to be made to a database
     //global variables
     JTextField hostField;//a class that allows a line of text to be changed
   JTextField queryField;//a class that allows a line of text to be changed
   QueryTableModel qtm;//a class that shows and changes regular two-dimensional tables of cells
   JComboBox comboBox;//a class that puts a button or editable field and a drop-down list together 
   public static void main(String args[]){     
      int choice=-1;//a variable of type int that is set to -1
          do{
         choice=getChoice();//invokes the method getChoice()
         if(choice!=0){
            getSelected(choice);//invokes the method getSelected(choice)
         }//end if
               //if the user chooses 5, it will cause him or her to exit the system
      }while(choice!=5);//end do-while
      System.exit(0);//closes down the menu screen
   }//end main
   public static int getChoice(){
      String choice;//a variable of type string
      int ch;//a variable of type int
      choice = JOptionPane.showInputDialog(null,"1. Maintain product details\n"+"2. Maintain member details\n"+"3. Maintain rental details\n"+"4. View product, member and rental details\n"+"5. Log Off\n\n"+"Enter your choice");//asks the user for some input   
          ch = Integer.parseInt(choice);//a class that wraps a value of the primitive type int in an object     
          return ch;//a method that returns an integer value
   }//end getChoice
   public static void getSelected(int choice){   
          if(choice==1){
         maintainProductDetails();//invokes the method maintainProductDetails()
      }//end if
      if(choice==2){
         maintainMemberDetails();//invokes the method maintainMemberDetails()
      }//end if
          if(choice==3){
         maintainRentalDetails();//invokes the method maintainRentalDetails()
      }//end if
          if(choice==4){
             Demo test = new Demo();//invokes the constructor Demo()
         test.setVisible(true);//shows the JTable component by marking it as visible
          }//end if
   }//end getSelected
   public static Connection getConnection(){
      try {
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");//used to create a JDBC connection using a database
      }//end try
          catch(java.lang.ClassNotFoundException e){//causes an exception to be thrown when an application tries to load in a class through its string name
         System.err.print("ClassNotFoundException: ");//displays an error message
         System.err.println(e.getMessage());//returns the exception that was raised if an error occurred while attempting to load the ClassNotFoundException class
      }//end catch
      try {
         con=DriverManager.getConnection(url,"","");//tries to create a connection with the database using the DriverManager class
      }//end try
          catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());//returns an SQL error message
      }//end catch
      return con;
   }//end getConnection
   public static void maintainProductDetails(){
      Connection con = getConnection();//creates a connection with the database
      String  addProduct1, addProduct2, addProduct3, addProduct4, addProduct5, addProduct6, addProduct7, addProduct8, addProduct9, addProduct10;//string variables that represent information about the different types of product data that will be stored in the database
      addProduct1 = "insert into Product values (110001, 'The Killers - Sams Town', 5.00, 'G', 'CD', 2006)";
      addProduct2 = "insert into Product values (110002, 'Robbie Williams - Rudebox', 5.00, 'G', 'CD', 2006)";
      addProduct3 = "insert into Product values (110003, 'Razorlight - Razorlight', 5.00, 'G', 'CD', 2006)";
      addProduct4 = "insert into Product values (110004, 'My Chemical Romance - The Black Parade', 5.00, 'G', 'CD', 2006)";
      addProduct5 = "insert into Product values (110005, 'Snow Patrol - Eyes Open', 5.00, 'G', 'CD', 2006)";
      addProduct6 = "insert into Product values (110006, 'Scissor Sisters - Ta-Dah!', 5.00, 'G', 'CD', 2006)";
          addProduct7 = "insert into Product values (110007, 'Lovesounds - Justin Timberlake', 5.00, 'G', 'CD', 2006)";
      addProduct8 = "insert into Product values (110008, 'Director - We thrive on big cities', 5.00, 'G', 'CD', 2006)";
      addProduct9 = "insert into Product values (110009, 'Roxette - Roxette hits', 5.00, 'G', 'CD', 2006)";
      addProduct10 = "insert into Product values (110010, 'Pussy Cat Dolls - PCD', 5.00, 'G', 'CD', 2006)";
          try {
         stmt = con.createStatement();//Creates a Statement object for sending SQL statements to the database
             //statements are allowed to be made once a connection is set up
             stmt.executeUpdate(addProduct1);
         stmt.executeUpdate(addProduct2);
         stmt.executeUpdate(addProduct3);
         stmt.executeUpdate(addProduct4);
               stmt.executeUpdate(addProduct5);
         stmt.executeUpdate(addProduct6);
             stmt.executeUpdate(addProduct7);
         stmt.executeUpdate(addProduct8);
         stmt.executeUpdate(addProduct9);
         stmt.executeUpdate(addProduct10);
         stmt.close();//closes the Statement object
         con.close();//terminates the connection with the database
      }//end try
          catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());//returns an SQL error message
      }//end catch
   }//end maintainProductDetails
   public static void maintainMemberDetails(){
      Connection con = getConnection();//creates a connection with the database
      String addMember1, addMember2, addMember3, addMember4, addMember5, addMember6, addMember7, addMember8, addMember9, addMember10;//string variables that represent information about the member data that will be stored in the database
      addMember1 = "insert into Member values (1234, 'Ann', 'Smyth', 'Upper Killult, Falcarragh, Co. Donegal', '(074)-9135210', '(087)-2030172', #5/11/85#, #5/12/06#)";
      addMember2 = "insert into Member values (2345, 'John', 'Murphy', 'Lower Killult, Falcarragh, Co. Donegal', '(074)-9135211', '(087)-2030173', #4/12/85#, #6/13/06#)";
      addMember3 = "insert into Member values (1324, 'James', 'McFadden', 'Lower Ardsbeg, Gortahork, Co. Donegal', '(074)-9165314', '(087)-2030171', #4/11/85#, #6/14/06#)";
      addMember4 = "insert into Member values (1235, 'Frankie', 'Ferry', 'Ardsmore, Gortahork, Co. Donegal', '(074)-9165325', '(087)-2031234', #6/13/60#, #6/15/06#)";
      addMember5 = "insert into Member values (1236, 'Daniel', 'McKimm', 'Ballyness, Falcarragh, Co. Donegal', '(074)-9135212', '(087)-2030184', #5/14/73#, #6/16/06#)";
      addMember6 = "insert into Member values (2346, 'Stephen', 'Doohan', 'Ballyness, Falcarragh, Co. Donegal', '(074)-9135213', '(087)-2030185', #6/13/85#, #5/13/06#)";
      addMember7 = "insert into Member values (2347, 'James', 'Ferry', 'Meenlaragh, Gortahork, Co.Donegal', '(074)-9165360', '(087)-2031345', #9/12/85#, #5/14/06#)";
      addMember8 = "insert into Member values (2348, 'Liam', 'Cannon', 'Derryconner, Gortahork, Co.Donegal', '(074)-9165324', '(087)-2031456', #4/11/86#, #5/15/06#)";
      addMember9 = "insert into Member values (2401, 'Ciaran', 'Ferry', 'Brinalack, Gweedore, Co.Donegal', '(074)-9176425', '(087)-2030282', #9/12/85#, #5/16/06#)";
      addMember10 = "insert into Member values (2402, 'Ciaran', 'McGee', 'Derrybeg, Gweedore, Co.Donegal', '(074)-9176536', '(087)-2030393', #9/14/85#, #5/18/06#)";
      try{
         stmt = con.createStatement();//Creates a Statement object for sending SQL statements to the database
               //statements are allowed to be made once a connection is set up
               stmt.executeUpdate(addMember1);
         stmt.executeUpdate(addMember2);
         stmt.executeUpdate(addMember3);
               stmt.executeUpdate(addMember4);
               stmt.executeUpdate(addMember5);
               stmt.executeUpdate(addMember6);
               stmt.executeUpdate(addMember7);
               stmt.executeUpdate(addMember8);
               stmt.executeUpdate(addMember9);
               stmt.executeUpdate(addMember10);
         stmt.close();//closes the Statement object
         con.close();//terminates the connection with the database
      }//end try
          catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());//returns an SQL error message
      }//end catch
   }//end maintainMemberDetails
     public static void maintainRentalDetails(){
      Connection con = getConnection();//creates a connection with the database
      String addRental1, addRental2, addRental3, addRental4, addRental5, addRental6, addRental7, addRental8, addRental9, addRental10;//string variables that represent information about the loan data that will be stored in the database
      addRental1 = "insert into Rental values (110001, 'The Killers - Sams Town', 1234, 'Ann', 'Smyth', #9/01/06#, #9/10/06#, 'Yes', 2.00)";
      addRental2 = "insert into Rental values (120001, 'Mission Impossible 3', 2345, 'John', 'Murphy', #9/02/06#, #9/09/06#, 'No', 0.00)";
      addRental3 = "insert into Rental values (130001, 'Need for Special Carbon', 1324, 'James', 'McFadden', #9/03/06#, #9/12/06#, 'Yes', 2.00)";
      addRental4 = "insert into Rental values (110002, 'Robbie Williams - Rudebox', 1235, 'Frankie', 'Ferry', #9/04/06#, #9/11/06#, 'No', 0.00)";
      addRental5 = "insert into Rental values (120015, 'Prime', 1236, 'Daniel', 'McKimm', #9/05/06#, #9/14/06#, 'Yes', 2.00)";
      addRental6 = "insert into Rental values (130015, 'FIFA 07', 2346, 'Stephen', 'Doohan', #9/06/06#, #9/13/06#, 'No', 0.00)";
      addRental7 = "insert into Rental values (110009, 'Roxette - Roxette hits', 2347, 'James', 'Ferry', #9/07/06#, #9/16/06#, 'Yes', 2.00)";
      addRental8 = "insert into Rental values (120003, 'The Break Up', 2348, 'Liam', 'Cannon', #9/08/06#, #9/15/06#, 'No', 0.00)";
      addRental9 = "insert into Rental values (130027, 'Gears of War', 2401, 'Ciaran', 'Ferry', #9/09/06#, #9/18/06#, 'Yes', 2.00)";
      addRental10 = "insert into Rental values (110021, 'Scooter - Mind the Gap', 2402, 'Ciaran', 'McGee', #9/10/06#, #9/17/06#, 'No', 0.00)";
      try{
         stmt = con.createStatement();//Creates a Statement object for sending SQL statements to the database
               //statements are allowed to be made once a connection is set up
               stmt.executeUpdate(addRental1);
         stmt.executeUpdate(addRental2);
         stmt.executeUpdate(addRental3);
               stmt.executeUpdate(addRental4);
               stmt.executeUpdate(addRental5);
               stmt.executeUpdate(addRental6);
               stmt.executeUpdate(addRental7);
               stmt.executeUpdate(addRental8);
               stmt.executeUpdate(addRental9);
               stmt.executeUpdate(addRental10);
         stmt.close();//closes the Statement object
         con.close();//terminates the connection with the database
      }//end try
          catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());//returns an SQL error message
      }//end catch
   }//end maintainRentalDetails
   public Demo(){//a constructor
      super("Demo Test Frame");//overrides the constructor
      setSize(350, 200);//Resizes this component so that it has width of 350 and height of 200 
      comboBox = new JComboBox();//invokes the class JComboBox
      comboBox.addItem("jdbc:odbc:VideoLibrary");//adds the specified item to the end of the scrolling list
      qtm = new QueryTableModel();//invokes the class QueryTableModel
      JTable table = new JTable(qtm);//a class that shows and changes regular two-dimensional tables of cells
      JScrollPane scrollpane = new JScrollPane(table);//a class that provides a scrollable view of a lightweight component
      JPanel p1 = new JPanel();//a class that puts the combo box and query field in a panel
      p1.setLayout(new GridLayout(3, 2));//Sets the layout manager for this container
      p1.add(comboBox);//Appends the specified component to the end of this container
      p1.add(new JLabel("Enter your query: "));//Appends the specified component to the end of this container
      p1.add(queryField = new JTextField());//Appends the specified component to the end of this container
      p1.add(new JLabel("Click here to send: "));//Appends the specified component to the end of this container
      JButton jb = new JButton("Search");//a class that is an implementation of a "push" button
      jb.addActionListener(new ActionListener(){//Adds an ActionListener to the button
         public void actionPerformed(ActionEvent e){
            qtm.setHostURL();//invokes the method setHostURL
            qtm.setQuery(queryField.getText().trim());//invokes the method setQuery; and returns the text that is presented by this text component and returns a copy of the string, with leading and trailing whitespaces omitted
      } );//end addActionListener
      p1.add(jb);//Appends the specified component to the end of this container
      getContentPane().add(p1, BorderLayout.NORTH);//Returns the content pane
      getContentPane().add(scrollpane, BorderLayout.CENTER);//Returns the content pane
   }//end Demo
}//end class Demo
import java.sql.*;//Provides the API for accessing and processing data stored in a data source using the Java programming language
import java.io.*;//Provides for system input and output through data streams, serialization and the file system
import java.util.Vector;//provides a class that implements a growable array of objects
import javax.swing.*;//Provides a set of lightweight components that, to the maximum degree possible, work the same on all platforms
import javax.swing.table.*;//Provides classes and interfaces for dealing with javax.swing.JTable
public class QueryTableModel extends AbstractTableModel{
     Vector cache;//a class that constructs an empty vector so that its internal data array has size 10 and its standard capacity increment is zero 
     int colCount;//a variable that counts the number of columns in the three tables
     String[] headers;//a class that represents character strings and all string literals in this program are implemented as instances of the String class
     Connection db;//an interface that allows a connection to be made to a database
     Statement statement;//an interface that allows executes the given SQL statement, which returns a single ResultSet object
     String currentURL;//a variable that allows the URL to be displayed in a combo box
     public QueryTableModel(){//a constructor
          cache=new Vector();//constructs an empty vector so that its internal data array has size 10 and its standard capacity increment is zero
          try{
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");//used by opening a JDBC connection using an URL
          }//end try
          catch(Exception e){
               System.out.println("problem loading the driver ");//an error message
          }//end catch
     }//end QueryTableModel
     public String getColumnName(int i){//Returns the designated column's name
        return headers;//returns the name of each column in the three table
     }//end getColumnName
     public int getColumnCount(){//Returns the number of columns in the column model
     return colCount;//returns the number of columns in the three tables
     }//end getColumnCount
     public int getRowCount(){//Returns the number of rows in this table's model
     return cache.size();//returns the number of components in the vector
     }//end getRowCount
     public Object getValueAt(int row, int col){//Returns the cell value at row and column
          return ((String[])cache.elementAt(row))[col];//Returns the component at the specified index
     }//end getValueAt
     public void setHostURL(){//sets the URL for the database
     String url = "jdbc:odbc:VideoLibrary";//a variable that allows a connection to be made to a database called VideoLibrary
     closeDB();//invokes the method closeDB()
          try{
db=DriverManager.getConnection(url,"","");//tries to create a connection with the database using the DriverManager class
statement=db.createStatement();//Creates a Statement object for sending SQL statements to the database
}//end try
catch(Exception e){
System.out.println("Could not initialize the database.");//an error message
e.printStackTrace();//a Throwable method that prints this throwable and it's backtrace to the standard error stream
}//end catch
     }//end setHostURL
public void setQuery(String q){//sets the kind of query that is to be sent to the database
          cache=new Vector();//constructs an empty vector so that its internal data array has size 10 and its standard capacity increment is zero
String s="select * from Product";//a variable that causes all the data that is in the product table to be displayed in a JTable, which also means that all the data that is in both the member and rental tables can also be displayed in a JTable
          try{
               ResultSet rs=statement.executeQuery(q);//an interface that is used to generate a database result set by executing a statement that queries the database
               ResultSetMetaData meta=rs.getMetaData();//an interface that is used to get information about the types and properties of the columns in a ResultSet object
               colCount=meta.getColumnCount();//Returns the number of columns in this ResultSet object
               headers=new String[colCount];//gets the name of each column in the three tables
               for(int h=1;h<=colCount;h++){
                    headers[h-1]=meta.getColumnName(h);//Get the designated column's name
               }//end for
               while(rs.next()){
                    String[] record=new String[colCount];//stores the name of each column in the three tables in memory
                    for(int i=0;i<colCount;i++){
                         record[i]=rs.getString(i+1);//Retrieves the value of the designated column in the current row of this ResultSet object as a String
                    }//end for
                    cache.addElement(record);//Adds the specified component to the end of this vector, increasing its size by one
               }//end while
               fireTableChanged(null);//Forwards the given notification event to all TableModelListeners that registered themselves as listeners for this table model
          }//end try
          catch(Exception e){
               cache=new Vector();//constructs an empty vector so that its internal data array has size 10 and its standard capacity increment is zero
               e.printStackTrace();//a Throwable method that prints this throwable and it's backtrace to the standard error stream
          }//end catch
     }//end setQuery
     public void initDB(String url){
          try{
               db=DriverManager.getConnection(url);//tries to create a connection with the database using the DriverManager class
               statement=db.createStatement();//Creates a Statement object for sending SQL statements to the database
          }//end try
          catch(Exception e){
               System.out.println("Could not initialize the database.");//an error message
               e.printStackTrace();//a Throwable method that prints this throwable and it's backtrace to the standard error stream
          }//end catch
     }//end initDB
     public void closeDB(){
          try{
               if(statement!=null){
               statement.close();//Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed
               }//end if
               if(db!=null){
               db.close();//Releases this Connection object's database and JDBC resources immediately instead of waiting for them to be automatically released
               }//end if
          }//end try
          catch(Exception e){
               System.out.println("Could not close the current connection.");//an error message
               e.printStackTrace();//a Throwable method that prints this throwable and it's backtrace to the standard error stream
          }//end catch
     }//end closeDB
}//end class QueryTableModel

here's an uncommented version of the code.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.table.*;
import javax.swing.JOptionPane;
import java.sql.*;
public class Demo extends JFrame{
   static String url = "jdbc:odbc:VideoLibrary";
   static Statement stmt;
   static Connection con;
   JTextField hostField;
   JTextField queryField;
   QueryTableModel qtm;
   JComboBox comboBox;
   public static void main(String args[]){
      int choice=-1;
      do{
         choice=getChoice();
         if(choice!=0){
            getSelected(choice);
      }while(choice!=5);
      System.exit(0);
   public static int getChoice(){
      String choice;
      int ch;
      choice = JOptionPane.showInputDialog(null,"1. Maintain product details\n"+"2. Maintain member details\n"+"3. Maintain rental details\n"+"4. View product, member and rental details\n"+"5. Log Off\n\n"+"Enter your choice"); 
      ch = Integer.parseInt(choice);    
      return ch;
   public static void getSelected(int choice){   
      if(choice==1){
         maintainProductDetails();
      if(choice==2){
         maintainMemberDetails();
      if(choice==3){
         maintainRentalDetails();
      if(choice==4){
         Demo test = new Demo();
         test.setVisible(true);
   public static Connection getConnection(){
      try {
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
      catch(java.lang.ClassNotFoundException e){
         System.err.print("ClassNotFoundException: ");
         System.err.println(e.getMessage());
      try {
         con=DriverManager.getConnection(url,"","");
      catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());
      return con;
   public static void maintainProductDetails(){
      Connection con = getConnection();
      String  addProduct1, addProduct2, addProduct3, addProduct4, addProduct5, addProduct6, addProduct7, addProduct8, addProduct9, addProduct10;
      addProduct1 = "insert into Product values (110001, 'The Killers - Sams Town', 5.00, 'G', 'CD', 2006)";
      addProduct2 = "insert into Product values (110002, 'Robbie Williams - Rudebox', 5.00, 'G', 'CD', 2006)";
      addProduct3 = "insert into Product values (110003, 'Razorlight - Razorlight', 5.00, 'G', 'CD', 2006)";
      addProduct4 = "insert into Product values (110004, 'My Chemical Romance - The Black Parade', 5.00, 'G', 'CD', 2006)";
      addProduct5 = "insert into Product values (110005, 'Snow Patrol - Eyes Open', 5.00, 'G', 'CD', 2006)";
      addProduct6 = "insert into Product values (110006, 'Scissor Sisters - Ta-Dah!', 5.00, 'G', 'CD', 2006)";
      addProduct7 = "insert into Product values (110007, 'Lovesounds - Justin Timberlake', 5.00, 'G', 'CD', 2006)";
      addProduct8 = "insert into Product values (110008, 'Director - We thrive on big cities', 5.00, 'G', 'CD', 2006)";
      addProduct9 = "insert into Product values (110009, 'Roxette - Roxette hits', 5.00, 'G', 'CD', 2006)";
      addProduct10 = "insert into Product values (110010, '***** Cat Dolls - PCD', 5.00, 'G', 'CD', 2006)";
      try {
         stmt = con.createStatement();
         stmt.executeUpdate(addProduct1);
         stmt.executeUpdate(addProduct2);
         stmt.executeUpdate(addProduct3);
         stmt.executeUpdate(addProduct4);
         stmt.executeUpdate(addProduct5);
         stmt.executeUpdate(addProduct6);
         stmt.executeUpdate(addProduct7);
         stmt.executeUpdate(addProduct8);
         stmt.executeUpdate(addProduct9);
         stmt.executeUpdate(addProduct10);
         stmt.close();
         con.close();
      catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());
   public static void maintainMemberDetails(){
      Connection con = getConnection();
      String addMember1, addMember2, addMember3, addMember4, addMember5, addMember6, addMember7, addMember8, addMember9, addMember10;
      addMember1 = "insert into Member values (1234, 'Ann', 'Smyth', 'Upper Killult, Falcarragh, Co. Donegal', '(074)-9135210', '(087)-2030172', #5/11/85#, #5/12/06#)";
      addMember2 = "insert into Member values (2345, 'John', 'Murphy', 'Lower Killult, Falcarragh, Co. Donegal', '(074)-9135211', '(087)-2030173', #4/12/85#, #6/13/06#)";
      addMember3 = "insert into Member values (1324, 'James', 'McFadden', 'Lower Ardsbeg, Gortahork, Co. Donegal', '(074)-9165314', '(087)-2030171', #4/11/85#, #6/14/06#)";
      addMember4 = "insert into Member values (1235, 'Frankie', 'Ferry', 'Ardsmore, Gortahork, Co. Donegal', '(074)-9165325', '(087)-2031234', #6/13/60#, #6/15/06#)";
      addMember5 = "insert into Member values (1236, 'Daniel', 'McKimm', 'Ballyness, Falcarragh, Co. Donegal', '(074)-9135212', '(087)-2030184', #5/14/73#, #6/16/06#)";
      addMember6 = "insert into Member values (2346, 'Stephen', 'Doohan', 'Ballyness, Falcarragh, Co. Donegal', '(074)-9135213', '(087)-2030185', #6/13/85#, #5/13/06#)";
      addMember7 = "insert into Member values (2347, 'James', 'Ferry', 'Meenlaragh, Gortahork, Co.Donegal', '(074)-9165360', '(087)-2031345', #9/12/85#, #5/14/06#)";
      addMember8 = "insert into Member values (2348, 'Liam', 'Cannon', 'Derryconner, Gortahork, Co.Donegal', '(074)-9165324', '(087)-2031456', #4/11/86#, #5/15/06#)";
      addMember9 = "insert into Member values (2401, 'Ciaran', 'Ferry', 'Brinalack, Gweedore, Co.Donegal', '(074)-9176425', '(087)-2030282', #9/12/85#, #5/16/06#)";
      addMember10 = "insert into Member values (2402, 'Ciaran', 'McGee', 'Derrybeg, Gweedore, Co.Donegal', '(074)-9176536', '(087)-2030393', #9/14/85#, #5/18/06#)";
      try{
         stmt = con.createStatement();
         stmt.executeUpdate(addMember1);
         stmt.executeUpdate(addMember2);
         stmt.executeUpdate(addMember3);
         stmt.executeUpdate(addMember4);
         stmt.executeUpdate(addMember5);
         stmt.executeUpdate(addMember6);
         stmt.executeUpdate(addMember7);
         stmt.executeUpdate(addMember8);
         stmt.executeUpdate(addMember9);
         stmt.executeUpdate(addMember10);
         stmt.close();
         con.close();
      catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());
   public static void maintainRentalDetails(){
      Connection con = getConnection();
      String addRental1, addRental2, addRental3, addRental4, addRental5, addRental6, addRental7, addRental8, addRental9, addRental10;
      addRental1 = "insert into Rental values (110001, 'The Killers - Sams Town', 1234, 'Ann', 'Smyth', #9/01/06#, #9/10/06#, 'Yes', 2.00)";
      addRental2 = "insert into Rental values (120001, 'Mission Impossible 3', 2345, 'John', 'Murphy', #9/02/06#, #9/09/06#, 'No', 0.00)";
      addRental3 = "insert into Rental values (130001, 'Need for Special Carbon', 1324, 'James', 'McFadden', #9/03/06#, #9/12/06#, 'Yes', 2.00)";
      addRental4 = "insert into Rental values (110002, 'Robbie Williams - Rudebox', 1235, 'Frankie', 'Ferry', #9/04/06#, #9/11/06#, 'No', 0.00)";
      addRental5 = "insert into Rental values (120015, 'Prime', 1236, 'Daniel', 'McKimm', #9/05/06#, #9/14/06#, 'Yes', 2.00)";
      addRental6 = "insert into Rental values (130015, 'FIFA 07', 2346, 'Stephen', 'Doohan', #9/06/06#, #9/13/06#, 'No', 0.00)";
      addRental7 = "insert into Rental values (110009, 'Roxette - Roxette hits', 2347, 'James', 'Ferry', #9/07/06#, #9/16/06#, 'Yes', 2.00)";
      addRental8 = "insert into Rental values (120003, 'The Break Up', 2348, 'Liam', 'Cannon', #9/08/06#, #9/15/06#, 'No', 0.00)";
      addRental9 = "insert into Rental values (130027, 'Gears of War', 2401, 'Ciaran', 'Ferry', #9/09/06#, #9/18/06#, 'Yes', 2.00)";
      addRental10 = "insert into Rental values (110021, 'Scooter - Mind the Gap', 2402, 'Ciaran', 'McGee', #9/10/06#, #9/17/06#, 'No', 0.00)";
      try{
         stmt = con.createStatement();
         stmt.executeUpdate(addRental1);
         stmt.executeUpdate(addRental2);
         stmt.executeUpdate(addRental3);
         stmt.executeUpdate(addRental4);
         stmt.executeUpdate(addRental5);
         stmt.executeUpdate(addRental6);
         stmt.executeUpdate(addRental7);
         stmt.executeUpdate(addRental8);
         stmt.executeUpdate(addRental9);
         stmt.executeUpdate(addRental10);
         stmt.close();
         con.close();
      catch(SQLException ex) {
         System.err.println("SQLException: " + ex.getMessage());
   public Demo(){
      super("Demo Test Frame");
      setSize(350, 200);
      comboBox = new JComboBox();
      comboBox.addItem("jdbc:odbc:VideoLibrary");
      qtm = new QueryTableModel();
      JTable table = new JTable(qtm);
      JScrollPane scrollpane = new JScrollPane(table);
      JPanel p1 = new JPanel();
      p1.setLayout(new GridLayout(3, 2));
      p1.add(comboBox);
      p1.add(new JLabel("Enter your query: "));
      p1.add(queryField = new JTextField());
      p1.add(new JLabel("Click here to send: "));
      JButton jb = new JButton("Search");
      jb.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            qtm.setHostURL();
            qtm.setQuery(queryField.getText().trim());
      p1.add(jb);
      getContentPane().add(p1, BorderLayout.NORTH);
      getContentPane().add(scrollpane, BorderLayout.CENTER);
import java.sql.*;
import java.io.*;
import java.util.Vector;
import javax.swing.*;
import javax.swing.table.*;
public class QueryTableModel extends AbstractTableModel{
     Vector cache; 
     int colCount;
     String[] headers;
     Connection db;
     Statement statement;
     String currentURL;
     public QueryTableModel(){
          cache=new Vector();
          try{
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          catch(Exception e){
               System.out.println("problem loading the driver ");
     public String getColumnName(int i){
        return headers;
     public int getColumnCount(){
     return colCount;
     public int getRowCount(){
     return cache.size();
     public Object getValueAt(int row, int col){
          return ((String[])cache.elementAt(row))[col];
     public void setHostURL(){
     String url = "jdbc:odbc:VideoLibrary";
     closeDB();
          try{
db=DriverManager.getConnection(url,"","");
statement=db.createStatement();
catch(Exception e){
System.out.println("Could not initialize the database.");
e.printStackTrace();
public void setQuery(String q){
          cache=new Vector();
String s="select * from Product";
          try{
               ResultSet rs=statement.executeQuery(q);
               ResultSetMetaData meta=rs.getMetaData();
               colCount=meta.getColumnCount();
               headers=new String[colCount];
               for(int h=1;h<=colCount;h++){
                    headers[h-1]=meta.getColumnName(h);
               while(rs.next()){
                    String[] record=new String[colCount];
                    for(int i=0;i<colCount;i++){
                         record[i]=rs.getString(i+1);
                    cache.addElement(record);
               fireTableChanged(null);
          catch(Exception e){
               cache=new Vector();
               e.printStackTrace();
     public void initDB(String url){
          try{
               db=DriverManager.getConnection(url);
               statement=db.createStatement();
          catch(Exception e){
               System.out.println("Could not initialize the database.");
               e.printStackTrace();
     public void closeDB(){
          try{
               if(statement!=null){
               statement.close();
               if(db!=null){
               db.close();
          catch(Exception e){
               System.out.println("Could not close the current connection.");
               e.printStackTrace();

Similar Messages

  • How do i use an import statement in a java program

    I need to write a java program which will connect to the Database but i need to do an import like in DB2 which will load data to the table.
    How do i execute that import statement

    Are you saying that you need to add rows to a table in DB2 via a Java program? If so, you need to look at the JDBC API, (available on this site along with a bunch of tutorials). If not, post again with a clearer description of your problem.

  • Using the Data Engine Java API

    I try to use the Data Engine Java API to generate an XML document from database data.
    So as mentioned in the documentation Business Intelligence Publisher User's Guide Release 10.1.3.2 (page 4-26 to 4-27)
    a) I created a java class (using Jdev Version 11.1.1.0.0)
    package oracle.apps.XMLPublisher.client;
    import com.sun.java.util.collections.Hashtable;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.dataengine.DataProcessor;
    public class XMLFileGenerator {
    public XMLFileGenerator() {
    public static void dataEngine() throws ClassNotFoundException, Exception {
    XMLFileGenerator xMLFileGenerator = new XMLFileGenerator();
    try {
    //Initialization instantiate the DataProcessor class//
    DataProcessor dataProcessor;
    dataProcessor = new DataProcessor();
    //Set Data Template to be executed
    dataProcessor.setDataTemplate("PERFRBS.xml");
    Hashtable parameters;
    parameters = new Hashtable();
    parameters.put("P_LEGAL_ENTITY_ID", "3259");
    parameters.put("P_TRU_ID", "3262");
    parameters.put("P_YEAR", "2009");
    dataProcessor.setParameters(parameters);
    // Now set the jdbc connection to the database that you
    // wish to execute the template against.
    // This sample assumes you have already created
    // the connection object 'jdbcConnection'
    Class.forName("oracle.jdbc.OracleDriver");
    String url =
    "jdbc:oracle:thin:@ap6005sdb.us.oracle.com:1526:hremeadv";
    Connection jdbcConnection;
    jdbcConnection= DriverManager.getConnection(url, "apps", "*****");
    dataProcessor.setConnection(jdbcConnection);
    System.out.println("Here1");
    // Specify the output directory and file for the data file
    dataProcessor.setOutput("BilanSocial.xml");
    System.out.println("Here2");
    dataProcessor.processData();
    System.out.println("Here3");
    } catch (SQLException e) {
    System.out.println("SQLException " + e.getMessage());
    } catch (XDOException e) {
    System.out.println("XDOException" + e.getMessage());
    public static void main(String[] argv) throws ClassNotFoundException,
    Exception {
    XMLFileGenerator xmlPublisher = new XMLFileGenerator();
    XMLFileGenerator.dataEngine();
    b) to generate my xml file based on the following data template
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <dataTemplate name="PERFRBS" defaultPackage="" version="1.0">
    <parameters>
    <parameter name="P_LEGAL_ENTITY_ID" dataType = "number"></parameter>
    <parameter name="P_TRU_ID" dataType = "number"></parameter>
    <parameter name="P_YEAR" dataType = "number"></parameter>
    </parameters>
    <lexicals>
    </lexicals>
    <dataQuery>
    <sqlStatement name="Q_INDICATORS">
    <![CDATA[ SELECT pai.action_information3   YEAR,
                    pai.action_information17  INDICATOR_VALUE
              FROM   pay_action_information pai 
             WHERE  pai.action_information_category     = 'HR_FR_BS'
                AND    pai.action_context_type             = 'PA'
                AND    pai.action_information1             = :P_LEGAL_ENTITY_ID
                AND    pai.action_information2             = :P_TRU_ID
                AND    pai.action_information3            = :P_YEAR       
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_YEARS" dataType="varchar2" source="Q_INDICATORS">
    <element name="YEAR" dataType="varchar2" value="YEAR"/>
    <element name="INDICATOR_VALUE" dataType="number" value="INDICATOR_VALUE"/>
    </group>
    </dataStructure>
    </dataTemplate>
    ---> But when I run it , it fails when calling the data processor with the following error
    D:\Jdeveloper11g\jdk\bin\javaw.exe -client -classpath "D:\Jdeveloper11g\jdevhome\XMLPublisher\src\Client\classes;D:\BI publisher\XMLP562_WIN\XMLP562_WIN\manual\lib\versioninfo.jar;D:\BI publisher\XMLP562_WIN\XMLP562_WIN\manual\lib\xdocore.jar;D:\BI publisher\XMLP562_WIN\XMLP562_WIN\manual\lib\collections.jar;D:\BI publisher\XMLP562_WIN\XMLP562_WIN\manual\lib\xmlparserv2-904.jar;D:\BI publisher\XMLP562_WIN\XMLP562_WIN\manual\lib\i18nAPI_v3.jar;D:\Jdeveloper11g\jdbc\lib\ojdbc14dms.jar;D:\Jdeveloper11g\jlib\orai18n.jar;D:\Jdeveloper11g\diagnostics\lib\ojdl.jar;D:\Jdeveloper11g\jlib\dms.jar" -Dhttp.proxyHost=emeacache.uk.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts= -Dhttps.proxyHost=emeacache.uk.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts= oracle.apps.XMLPublisher.client.XMLFileGenerator
    Here1
    Here2
    Exception in thread "main" java.lang.IllegalAccessError: tried to access class oracle.jdbc.driver.OracleStatement from class oracle.apps.xdo.dataengine.DBConnection
         at oracle.apps.xdo.dataengine.DBConnection.setRowPrefetchSize(DBConnection.java:42)
         at oracle.apps.xdo.dataengine.XMLPGEN.setRowPrefetchSize(XMLPGEN.java:1224)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:420)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:281)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:251)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:192)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:222)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:334)
         at oracle.apps.XMLPublisher.client.XMLFileGenerator.dataEngine(XMLFileGenerator.java:50)
         at oracle.apps.XMLPublisher.client.XMLFileGenerator.main(XMLFileGenerator.java:62)
    Process exited with exit code 1.
    Thanks by advance for your help

    Make sure you have the Oracle JDBC library setup in project parties and it's setup to export. The api's are fine. Have you looked at the BIPublisherIDE I wrote. All this code is already written for you. There is a manual on the site as well
    http://bipublisher.blogspot.com/2008/03/bi-publisher-bipublisheride.html
    Ike Wiggins
    http://bipublisher.blogspot.com

  • Is it possible to run the java program without main?

    Hi,
    Is it possible to run the java program without main?
    if anybody know please tell me, how it is possible.
    Regards,
    Ramya

    Hi,
    Is it possible to run the java program without main?
    if anybody know please tell me, how it is possible.
    Regards,
    RamyaWhy do you ask? It sounds like an odd question. Your program can be an applet and it doesn't need a main method in that case.
    Kaj

  • Hot to use the data grid to edit column objects

    I have a simple object type:
    CREATE OR REPLACE TYPE TIMESLICE AS OBJECT
    SINCE TIMESTAMP (6),
    UNTIL TIMESTAMP (6)
    And a simple table with one column containing objects of this type:
    CREATE TABLE TABLE1
    COLUMN1 TIMESLICE
    I can insert into the table:
    INSERT INTO SLICES VALUES (timeslice (NULL, NULL));
    But when I try to use the data grid and write there the same string "timeslice (NULL, NULL)" as value I get the following error during commit:
    One error saving changes to table "TABLE1":
    Row 1: ORA-06550: line 1, column 55:
    PL/SQL: ORA-00932: inconsistent datatypes: expected UDT got CHAR
    ORA-06550: line 1, column 7:
    PL/SQL: SQL Statement ignored
    The data grid interprets the value as characters instead of an expression.
    How do I have to enter the object in the data grid?

    Is it possible to access the cache datasource inside the script component which is available in the same data flow task??
    Thanks in advance,
    Saravanan

  • Create a Purchase order using the BAPI using the data in the XML file.

    Hello Gurus,
    here is the scenario can anyone help me how to proceed explaining the procedure?
    Create a Purchase order using the BAPI using the data in the XML file.
    comprehensive explanations are appreciated.
    thanks in advance.

    hi,
      first use fm "bapi_po_create".
      then use fm "BAPI_ACC_GL_POSTING_POST"
    The demo environment was made with real business scenario in mind, but following subjects need to be addressed in a live implementation:
    •     No exceptions and error handling is implemented, except the order rejection (e.g. partly delivery);
    •     In Navision both XML Ports and the XML DOM has been used to integrate with SAP XI, because XML ports has some drawbacks regarding to Namespaces in XML Documents (mandatory in SAP XI);
    •     A minimum of SAP and Navision customization is required to implement this solution. (e.g. user exit in SAP, Navision XML DOM).

  • Error while importing the tables from MySQL using the data source connection

    Hi,
    I am trying to import tables from MySQL into Powerpivot using the data source connection, if use the import using the Query option its working fine but not with the select list of table option.
    when i click on the select list of tables option, i get the below error after selecting all the tables to be imported:
    OLE DB or ODBC error.
    An error occurred while processing table 'XXXXXXXXXX'.
    The current operation was cancelled because another operation in the transaction failed.

    Hi Bharat17an,
    Please provide the detail information when create the MySQL connection in your PowerPivot model. Here is a good article regarding "how to Use MySQL and Microsoft PowerPivot Together" for your reference, please see:
    http://www.datamensional.com/2011/09/how-to-use-mysql-and-microsoft-powerpivot-together-2/
    If this issue still persists, please help to collection windows event log information. It maybe helpful for us to troubleshoot this issue.
    Regards,
    Elvis Long
    TechNet Community Support

  • My old computer (a Sony) with my iTunes crashed. I have a new MAC and want to make sure I can keep all of my music (mostly from old CD's that have been lost). I bought iTunes match hoping that would work but it isn't using the data on my phone. HELP!

    My old computer (a Sony) with my iTunes crashed. I have a new MAC and want to make sure I can keep all of my music (mostly from old CD's that have been lost). I bought iTunes match hoping that would work but it isn't using the data on my phone. HELP!

    Since you have purchased a new Mac (which, BTW, is not typed in all capitals) why not buy a Time Capsule <http://www.apple.com/airport-time-capsule/> which is designed specifically to work with OS X and Time Machine?
    You don't say what part of your Sony "crashed." If it was not the HDD it is possible to take the computer apart, put the HDD in an external case, then recover the data off of it (including the music) simply drag-n-drop. If it was the HDD that "crashed" that makes it more difficult.
    If you are able to recover the music from the Sony you can then add it to the iTunes library on the Mac and iTunes Match will then scan, match and upload the tracks to be mirrored in the cloud.

  • Can I automate the creation of a cluster in LabView using the data structure created in an autogenerated .CSV, C header, or XML file?

    Can I automate the creation of a cluster in LabView using the data structure created in an auto generated .CSV, C header, or XML file?  I'm trying to take the data structure defined in one or more of those files listed and have LabView automatically create a cluster with identical structure and data types.  (Ideally, I would like to do this with a C header file only.)  Basically, I'm trying to avoid having to create the cluster by hand, as the number of cluster elements could be very large. I've looked into EasyXML and contacted the rep for the add-on.  Unfortunately, this capability has not been created yet.  Has anyone done something like this before? Thanks in advance for the help.  
    Message Edited by PhilipJoeP on 04-29-2009 04:54 PM
    Solved!
    Go to Solution.

    smercurio_fc wrote:
    Is this something you're trying to do at runtime? Clusters are fixed data structures so you can't change them programmatically. Or, are you just trying to create some typedef cluster controls so that you can use them for coding? What would your clusters basically look like? Perhaps another way of holding the information like an array of variants?
    You can try LabVIEW scripting, though be aware that this is not supported by NI. 
     Wow!  Thanks for the quick response!  We would use this cluster as a fixed data structure.  No need to change the structure during runtime.  The cluster would be a cluster of clusters with multiple levels.  There would be not pattern as to how deep these levels would go, or how many elements would be in each.   Here is the application.  I would like to be able to autocode a Simulink model file into a DLL.  The model DLL would accept a Simulink bus object of a certain data structure (bus of buses), pick out which elements of the bus is needed for the model calculation, and then pass the bus object.  I then will take the DLL file and use the DLL VI block to pass a cluster into the DLL block (with identical structure as the bus in Simulink).  To save time, I would like to auto generate the C header file using Simulink to define the bus structure and then have LabView read that header file and create the cluster automatically.   Right now I can do everything but the auto creation of the cluster.  I can manually build the cluster to match the Simulink model bus structure and it runs fine.  But this is only for an example model with a small structure.  Need to make the cluster creation automated so it can handle large structures with minimal brute force. Thanks!  

  • How do I determine what is using the data on my iphone 5c?

    In looking at our bill we have one person that is using almost triple the amount of data that the other users are, and we need to figure out exactly what it is that is eating all of the data on his phone as he doesn't have any clue what it could be. Any help to determine what is using the data on an iphone 5c?

        emilyki, look no further. We can help you look into this data usage issue. First of all, we recommend that you disable data for a few applications on that iPhone 5C device to ensure that the applications are not depleting data from your allowance when not in use. You can do this by tapping Settings>Cellular>Scroll down to all the downloaded applications and disable data for applications.
    Additionally, you also have the option of disabling data in Settings>Cellular when you're not using data or connected to Wi-Fi.
    Lastly, you may view the data usage sessions for that line online at My Verizon to determine when data is used the most. http://bit.ly/xB4iTc Keep us posted.
    LasinaH_VZW
    Follow us on Twitter @VZWSupport

  • In the numbers app, using the "date and time" function, is it possible to remove the time? I need to put together a list of dates, but I don't need or want times.

    In the numbers app, using the "date and time" function, is it possible to remove the time? I need to put together a list of dates, but I don't need or want times.

    When formatting your column to date/time, pick Date & time, and then pick the letter i in the circle to the right. Then scroll down and pick "No time"
    Jason

  • How to use the data that we got after successful execution of a Bapi

    I have created a simple Webdynpro application to execute a user defined Bapi and that was executing successfully but the next step when i want to use the data that which i have retrieved from that Bapi i am facing problem.I am unable to use that particular data
    My idea is to use that data and again i want to filter that particular data which i got from the Bapi execution with out calling another Bapi
    Ex: I wrote a user defined Bapi to retrieve flight details if i enter the id of the particular airline
    Then i executed my webdynpro application and i am able to get the output
    from that output i want a particular flight details if i choose the City name i.e. the details related to that particular city which i choose

    Hi Praveen,
    Thanks for the Help,
    I am working with the same scenario which was there in the PDF sent by you but in that document it was directly allowing us to click on the output which we got after executing a Bapi, but here when i am executing i didn't know the procedure how to make use of the data which we got after execution and displaying it in other view
    can we write any code to access that particular data that we got after executing that flight scenario and do some operations on that particular fields
    thanks and regards
    Raghu

  • How to use the date repository variable in filter expression

    Hi Gurus
    I am getting error in using the date repository variable in Filter expression. I am using the below formula
    filter( Fact.calls USING  "Dim Time"."Fiscal Month End Date" = VALUEOF("month_start") )
    I am getting below error
    Formula syntax is invalid.
    [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 22024] A comparison is being carried out between non-compatible types. (HY000)
    SQL Issued: SELECT filter( fact.Calls using "Dim Time"."Fiscal Month End Date" =VALUEOF("month_start")) FROM "Call Data"
    Then i tryed the below format i am getting still the error
    filter( Fact.calls USING  "Dim Time"."Fiscal Month End Date" = DATE'(VALUEOF("month_start"))' )
    Formula syntax is invalid.
    [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 46047] Datetime value (VALUEOF("month_start")) from (VALUEOF("month_start")) does not match the specified format. (HY000)
    SQL Issued: SELECT filter( Fact.Calls using "Dim Time"."Fiscal Month End Date" =DATE'(VALUEOF("month_start"))') FROM "Call Data"
    Please let me know what i am missing or what is the correct syntax for fitler using the date repository variable.
    Thanks in advance
    Regards
    @li

    Hi @li,
    Syntax-1 is fine it will work,What kind of Variable is it?
    Static or Dynamic
    Thanks,

  • I want to update the Custom table using the data available in ITAB.

    Hi,
    I want to updaste the Custom Table which is created by me (Ztable) using the data available in itab.(which i got from defferent standard tables)
    I want to update the custom table using the itab data How is it possible?
    Is any possible by using Modify ?
    DPK.

    example here
    modifying datbase table useing internal table
    advises before updating this datbase table plz lock that table to avoid incosistency
    write the logic for modifying
    Modify the database table as per new dunning procedure
    MODIFY fkkvkp FROM TABLE lt_fkkvkp .
    and finally unlock the table
    example
    *To lock table for further operations
    constants: lc_tabname TYPE rstable-tabname VALUE 'FKKVKP' . "FKKVKP
    CALL FUNCTION 'ENQUEUE_E_TABLE'
    EXPORTING
    tabname = lc_tabname
    EXCEPTIONS
    foreign_lock = 1
    system_failure = 2
    OTHERS = 3.
    IF sy-subrc EQ 0.
    To fetch all the contract accounts for customers of the segment
    Households/SME.
    PERFORM fetch_contract_accounts using lc_tabname .
    ENDIF. " IF sy-subrc EQ 0.
    *wrote the logic
    Modify the database table as per new dunning procedure from internal table
    MODIFY fkkvkp FROM TABLE lt_fkkvkp .
    *unlock the tbale
    CALL FUNCTION 'DEQUEUE_E_TABLE'
    EXPORTING
    TABNAME = uc_tabname .

  • Do I need to purchase an iPad with cellular to use imaps or can I purchase an iPad with wifi only and use the data connection on my iPhone.

    Do I need to purchase an iPad with cellular to use imaps or can I purchase an iPad with wifi only and use the data connection on my iPhone.
    My aim is to have maps on the bigger iPad screen.

    the wifi version don't have an gps chip

Maybe you are looking for