Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add mysql #40

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open

add mysql #40

wants to merge 7 commits into from

Conversation

bfgray3
Copy link
Owner

@bfgray3 bfgray3 commented Sep 8, 2024

closes #39

https://hub.docker.com/r/mysql/mysql-server/

docker compose up
docker exec -it finances-db-1 mysql -uroot -p

alter user 'root'@'localhost' identified with mysql_native_password by '';  -- FIXME
select * from foo.classes;

@@ -0,0 +1,17 @@
create database foo;
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need a real name

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should make a comments table too

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make views for total, change?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

set up sqlite database
1 participant