telephone billing system in java complete source code
#1

Telephone billing is given out when we call to much
Reply
#2

Telephone billing system project is implemented in java platform. Main aim of this project is to develop a software application for telecommunication service providers for improving efficiency in billing procedure. Using this system it is easy to calculate users billing details and managing customer billing details by providing call details and cost for the every call user called from his mobile. This project is developing to increase speed of billing system, bill calculation and report generation.

In existing system manual methods like maintained data in registers are used. In this method it is not easy to manage data efficiently and time taken for providing service for users is time taking process. Retrieving old data is not possible and there are chances of losing data.

In present system data is managed in centralized database which is easy to retrieve customer’s information. Customers are provided with fast service with detailed information on billing report like call costs for each and every call.


[cc lang=”sql”] public class dbConn
{
// Member Variables
private String m_DBLoc = “jdbc:odbc:wipro”;
private String m_DBDriver = “sun.jdbc.odbc.JdbcOdbcDriver”;
private ResultSet m_RS = null; // RecordSet Variable
private Connection m_conn = null;

public String setData(String name, String pwd, String fName, String lName, String email, String pno, String address, String state, int pin, String cno) {
String sqlInsSt = “INSERT INTO USER_TBS VALUES(‘”+name+”‘,'”+pwd+”‘,'”+fName+”‘,'”+lName+”‘,'”+email+”‘,'”+pno+”‘,'”+address+”‘,'”+state+”‘,”+pin+”,'”+cno+”‘)” ;
int n = 0;
if(m_conn == null) // if Connection has not been set
return “Connection failed” ;

try {
Statement s = m_conn.createStatement();
n = s.executeUpdate(sqlInsSt);
}catch (SQLException e) {
e.printStackTrace();} // if a SQL error occurs

if(n !=0)
return “Data inserted successfully” ;
else
return “Data insertion is failed” ;
}

public ResultSet getData() {
String sqlStatement = “SELECT pno FROM new_connection” ;
ResultSet temp = executeQuery(sqlStatement);
return temp;
}

public ResultSet executeQuery(String stmt)
{
if(m_conn == null) // if Connection has not been set
m_RS = null;
else
{ try {
Statement s = m_conn.createStatement();
m_RS = s.executeQuery(stmt);
}
catch (SQLException e) {e.printStackTrace();} // if a SQL error occurs
}
return(m_RS);
}

public String DBConnect()
{
String retVal = “”; // there are no errors yet
//Connection conn = null;
try // try to connect to the database
{ Class.forName(m_DBDriver);
m_conn = DriverManager.getConnection(m_DBLoc,”scott”,”tiger”);
}
// if the driver class isn’t found
catch (ClassNotFoundException e) {retVal = e.toString();
e.printStackTrace();}
catch (SQLException e) {retVal = e.toString();
e.printStackTrace();} // if a SQL error occurs

return(retVal); // returns error messages or an empty string
// that the caller must print.
}
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: telephone bill management system source code in vb, download gas billing system source codes in java, energy billing system project in java with source code, telephone phone billing system code using applet free download, billing system complete documentation, source code billing inventory java, energy billing system project in java with source code**49980## **modules ofmobile tracking system project in android,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  simple java rmi chat application source code 2 19,737 20-07-2018, 12:08 PM
Last Post: Guest
  authentication schemes for session passwords using color and images project source code 2 2,253 03-02-2018, 09:35 AM
Last Post: Nischithnash
  free download source code for online movie ticket booking in java 2 19,180 15-08-2017, 03:21 PM
Last Post: Morshed
  source code for rsa encryption and decryption in java 2 8,185 29-05-2017, 04:21 PM
Last Post: Meghna Jadhav
  download liver tumor ct scan image in matlab with source code 4 8,234 21-05-2017, 09:54 PM
Last Post: abdulrahmanmashaal
  online cab booking source code in asp net 3 8,116 11-05-2017, 10:39 AM
Last Post: jaseela123d
Thumbs Up online catering management system on php with report and source code and ppt 4 8,988 29-04-2017, 10:59 AM
Last Post: jaseela123d
  source code for task scheduling using genetic algorithm using java 2 8,696 11-04-2017, 08:31 PM
Last Post: Guest
  automatic timetable generator source code vb 1 7,774 07-04-2017, 12:31 PM
Last Post: jaseela123d
Thumbs Up source code of online payment system using steganography and visual cryptography 3 8,674 06-04-2017, 09:56 AM
Last Post: jaseela123d

Forum Jump: