Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abetoluwani/python-rdms
Connecting a Python with a RDMS
https://github.com/abetoluwani/python-rdms
Last synced: 6 days ago
JSON representation
Connecting a Python with a RDMS
- Host: GitHub
- URL: https://github.com/abetoluwani/python-rdms
- Owner: abetoluwani
- Created: 2024-12-03T16:31:22.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-03T16:34:45.000Z (2 months ago)
- Last Synced: 2024-12-03T17:45:20.582Z (2 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-rdms
Accessing SQL from a Programming Language
A database programmer must have access to a general-purpose programming language for two main reasons:1. Limited expressiveness of SQL
Not all queries can be expressed in SQL, as it lacks the full expressive power of a general-purpose programming language.2. Non-declarative actions
Tasks such as printing reports, interacting with users, or displaying query results in a graphical user interface cannot be
performed directly within SQL.
For this laboratory work, students are required to select one of the freely available RDBMS systems online and learn how to establish a
connection to the database using a programming language. It is highly recommended to use one of the following RDBMS systems:
SQLite, PostgreSQL, MySQL, or MS SQL Server.
As for the programming language, students should choose from the following options: C++, Java, C#, Python, Ruby, Go, Kotlin, Rust,
Swift, or Julia.