Esempio n. 1
0
static void bindWhereClause(SQLiteStatement& query, int64_t id, IDBKey* key)
{
    query.bindInt64(1, id);
    key->bind(query, 2);
}
Esempio n. 2
0
//Returns transaction log
void Database::getTransactions(int accountId){

	//Opens database
	SQLiteDatabase *pDatabase = this->connect();
	SQLiteStatement *pStmt = this->createStatement(pDatabase);

	//Holds the number of transactions for this account
	int transactionCount = 0;

	vector<int> transactionIds;

	//Query to poll the database for all transactions by accountId
	pStmt->Sql("Select * FROM Transactions1 where accountId = ?");
	pStmt->BindInt(1, accountId);
	pStmt->Execute();

	//Controls the loop to add all transactions to the vector
	bool moreRows=true;

	//While there are additional rows of transactions, add them to the transaction log
	while (moreRows = pStmt->FetchRow())
	{
		// if transactioncount+1=8, then you got to clear the screen. Want 8 transactions at a time. 
		if (transactionCount == 0 || transactionCount % 8 == 0)
		{
			//if no transactions have been included, place zero.
			if (transactionCount == 0)
			{
				system("cls");
				cout << "Id \t" << "Amount \t" << "Transaction Type \t" << "Transaction Date \t" << endl << endl;
			}

			//Control to Display only 10 transactions at a time.
			if (transactionCount % 8 == 0 && transactionCount > 0)
			{
				int choice = 0;
				if (moreRows == false)
				{
					cout << endl << endl << "1) View Specific Transaction?" << endl;
					cout << endl << endl << "2) Exit Transaction Log?" << endl << endl;
					cout << "Select Option Number: ";
					cin >> choice;

					if (choice == 1)
					{
						int selection;
						cout << "View Transaction Number: ";
						cin >> selection;
						//view specific selection
						getTransaction(transactionIds[selection - 1]);
						//return to base account screen. 
						pStmt->FreeQuery();

						return;
					}

				
				}
				if (moreRows == true)
				{
					cout << endl << "1) View Specific Transaction?";
					cout << endl << "2) View More Transactions?";
					cout << endl << "3) Exit Transaction Log?" << endl << endl;
					cout << "Select Option Number: ";
					cin >> choice;

					if (choice == 1)
					{
						int selection;
						cout << "View Transaction Number: ";
						cin >> selection;
						getTransaction(transactionIds[selection - 1]);
						pStmt->FreeQuery();
						return;//leave loop.
					}
Esempio n. 3
0
//Create a new customer and return that object to the calling function
Customer *Database::createCustomer(string firstName, string lastName, int pin, string emailAddress) {
	// create a record in the database for the customer

	// create and open database
	SQLiteDatabase *pDatabase = this->connect();
	SQLiteStatement *pStmt = this->createStatement(pDatabase);

	//Insert query
	pStmt->Sql("INSERT INTO Customer (lastName, firstName, emailAddress, PIN) VALUES(?, ?, ?, ?);");
	pStmt->BindString(1, lastName);
	pStmt->BindString(2, firstName);
	pStmt->BindString(3, emailAddress);
	pStmt->BindInt(4, pin);

	// executes the INSERT statement and cleans-up automatically
	pStmt->ExecuteAndFree();

	// get the customer ID (the last row id)
	pStmt->Sql("SELECT last_insert_rowid();");
	pStmt->Execute();
	int customerId = pStmt->GetColumnInt(0); // get the int value at the zeroth column 

	pStmt->FreeQuery();
	// return the customer to the calling function
	return new Customer(customerId, firstName, lastName, emailAddress, pin);
}
Esempio n. 4
0
// Account: Create, Update, Retrieve
Account *Database::createAccount(int customerId, double balance,string accountStatus, string accountType){

	// create and open database
	SQLiteDatabase *pDatabase = this->connect();
	SQLiteStatement *pStmt = this->createStatement(pDatabase);

	pStmt->Sql("INSERT INTO Account (customerId, balance, accountStatus, accountType) VALUES(?, ?, ?, ?);");
	pStmt->BindInt(1, customerId);
	pStmt->BindDouble(2, balance);
	pStmt->BindString(3, accountStatus);
	pStmt->BindString(4, accountType);

	// executes the INSERT statement and cleans-up automatically
	pStmt->ExecuteAndFree();

	// get the customer ID (the last row id)
	pStmt->Sql("SELECT last_insert_rowid();");
	pStmt->Execute();
	int accountId = pStmt->GetColumnInt(0); // get the int value at the zeroth column 
	
	pStmt->FreeQuery();
	// return the account to the calling function

	Database *dbObject = new Database();

	//Write this transaction to the database
	dbObject->createTransaction(accountId, balance, "Deposit", "Time", "Opening Account Deposit");

	//Build and return an account object to the calling function
	return new Account(accountId, customerId, balance,accountStatus, accountType);
}