Package org.uploadDB.Connect

Examples of org.uploadDB.Connect.CreateTable


    //Let the parse file methods analyse the file to get the field values and the field length.   
    pf.ReadFirstLine(cs.getFileOpen().getSelectedFile());
    pf.AnalyseFile(cs.getFileOpen().getSelectedFile());

    //Set the db connection for the createtable object
    ct = new CreateTable();
    ct.setDbCon(cc.getDbCon());   
    ct.setTableName(cs.getFTableName().getText());   
    ct.createtable(cc.getDbCon(), pf.getTableLayout(), pf.getFieldLength());

    //Create an inserttable object and sets it name.
View Full Code Here

TOP

Related Classes of org.uploadDB.Connect.CreateTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.