All Questions
Tagged with postgresql object-oriented
4 questions
6
votes
1
answer
325
views
OOP Python Blackjack game with player accounts in PostgreSQL
This is an OOP version of Lastest version of my Blackjack game. Also, it now uses PostgreSQL as database.
...
6
votes
4
answers
461
views
Using PostgreSQL effectively with a banking app
I'm kind of newbie for these things but I did something and I want to know how I can do this effectively.
...
1
vote
1
answer
770
views
Adding new or existing tags to a blog post
I'm working on a simple blogsystem (for learning purposes, not to reinvent the wheel). In this system the user can add existing or new tags to a blogpost. I wrote a method to achieve this, but it's ...
6
votes
1
answer
2k
views
Generic method for database calls
Background
Breaking from MVC, I've implemented the following architecture:
POST/GET ➤ PHP ➤ Database Calls ➤ XML ➤ XSLT ➤ HTML
All database interactions are ...