Skip to content

Instantly share code, notes, and snippets.

View EhsanulHaqueSiam's full-sized avatar
🏠
Working from home

Md Ehsanul Haque EhsanulHaqueSiam

🏠
Working from home
View GitHub Profile
@EhsanulHaqueSiam
EhsanulHaqueSiam / directory_structure_to_markdown_windows.md
Created July 12, 2023 17:46
A guide on how to generate a Markdown representation of a GitHub repository's directory structure on Windows.

Guide: Generate a Markdown Representation of a Directory Structure on Windows

This guide will walk you through the steps required to generate a Markdown representation of a GitHub repository's directory structure on a Windows machine.

  1. Clone the Repository

    Clone the repository to your local machine. You can use GitHub Desktop or use the command line (CMD or PowerShell).

git clone https://github.com/username/repo.git

@EhsanulHaqueSiam
EhsanulHaqueSiam / JDBC-Installing-Process-and-key-info.md
Last active August 2, 2023 18:29
JDBC: Java Database Connectivity Installing Process and Key Informations

Introduction to JDBC

Java Database Connectivity (JDBC) is a powerful and essential technology that enables Java applications to interact with relational databases. It is a part of the Java Standard Edition (Java SE) and provides a standard API (Application Programming Interface) for connecting and executing queries on databases. JDBC allows developers to build dynamic and data-driven Java applications that can store, retrieve, and manipulate data from various database management systems (DBMS) such as MySQL, Oracle, PostgreSQL, and more.

Table of Contents:

  1. Introduction to JDBC
@EhsanulHaqueSiam
EhsanulHaqueSiam / Java Database Connectivity.md
Created August 2, 2023 18:30
JDBC (Java Database Connectivity) in Java

JDBC (Java Database Connectivity) in Java

Introduction

JDBC (Java Database Connectivity) is a powerful and essential technology that allows Java applications to interact with relational databases. It provides a standardized API (Application Programming Interface) for connecting to databases, executing SQL queries, and processing query results. JDBC is a part of the Java Standard Edition (Java SE) and is widely used in developing data-driven Java applications.

What is JDBC (Java Database Connectivity)?

JDBC (Java Database Connectivity) is a Java API that provides a standard way to interact with databases. It allows Java applications to establish a connection to a database, send SQL queries to the database, and retrieve results from the queries. JDBC acts as a bridge between the Java application and the database, making it possible to create dynamic and data-driven Java applications.