No description
This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2015-09-29 23:20:12 -05:00
a.out cross product done 2015-09-28 16:03:41 -05:00
Attribute.cpp Projection linked. 2015-09-29 13:28:24 -05:00
Attribute.h Doing things. 2015-09-28 17:02:04 -05:00
Condition.cpp added gettuple 2015-09-24 20:49:49 -05:00
Condition.h added gettuple 2015-09-24 20:49:49 -05:00
DBApp.cpp Changed #includes to renamed header. 2015-09-28 19:11:26 -05:00
DBEngine.cpp rename expression works. 2015-09-29 13:55:47 -05:00
DBEngine.h rename expression works. 2015-09-29 13:55:47 -05:00
Parser.cpp Conditions are fully functional, as well as select. 2015-09-29 23:20:12 -05:00
Parser.h Renamed Parser files. 2015-09-28 18:51:56 -05:00
README.txt Updated README.txt 2015-09-27 23:26:45 -05:00
Relation.cpp Conditions are fully functional, as well as select. 2015-09-29 23:20:12 -05:00
Relation.h Conditions work withou && or || arguments. Select is implemented. 2015-09-29 18:35:12 -05:00
savefile.txt Added functionality of EXIT, SHOW, SAVE, INSERT, and CREATE commands through parser. Added some functions to help with that. 2015-09-27 23:24:02 -05:00
test Conditions are fully functional, as well as select. 2015-09-29 23:20:12 -05:00
test.cpp Conditions are fully functional, as well as select. 2015-09-29 23:20:12 -05:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//---IMPORTANT---//

The function stoi() is used in the parser .cpp file to parse integers from the input.
When compiling things with the parser included, make sure you compile using:

g++ -std=c++11 *.cpp

ALSO, now that we are compiling into a standalone executable, compile using this command:

g++ -o test -std=c++11 *.cpp

"test" can be anything you want, but for now our executable is "test".

//---------------//

I changed the name of the repo. To make everything pretty, rename your working folder, and type this line:

	git remote set-url origin https://github.tamu.edu/USERNAME/DMS.git

I also set up development branches for each of us. I think this is the way were supposed to have it, but this is my first GitHub project so Im not at all positive.
When beginning to work:

	git checkout beccadev

This switches to your development branch. At any time, just type git status to see whats going on.
Before doing anything, type:

       git merge beccadev master
       git push
       
This updates your branch with the master branch, and pushes the update to GitHub. There is probably definitely a better way to do this. (Im pretty sure you can use git clone somehow)
Dont forgot to use git add filename.txt to add any files you want saved to git. Or just use git add * to grab them all. For some reason its making me do this every time I edit anything, which is weird.
Commit changes with git commit m “something descriptive”.

If everything works the way youve anticipated and it compiles properly and completely done, return to master with git checkout master and merge:

	git merge master beccadev

Type git push and youre done.