M. Niyazi Alpay
M. Niyazi Alpay
M. Niyazi Alpay

I've been interested in computer systems since a very young age, and I've been programming since 2005. I have knowledge in PHP, MySQL, Python, MongoDB, and Linux.

 

about.me/Cryptograph

  • admin@niyazi.org
Database Connection in C#

Database Connection in C#

In C#, for SQLServer connection, we need to call SqlClient namespace (using System.Data.SqlClient;), or for another database, we call the required namespace. For MySQL, if the .NET connector is instal

PHP - Connecting to MySQL Database and Reading Information (Illustrated Explanation)

PHP - Connecting to MySQL Database and Reading Information (Illustrated Explanation)

The database we will connect to: ornek_veritabani We have created our database and our table named isim_listesi. We defined the type of the column named id as int, which means integer, and defined

Running a Query in C# Database

Running a Query in C# Database

In C#, we use the SqlCommand command to execute queries in the database. Since I will continue with MySQL for our example, I will use the MySqlCommand command. Start a new Windows Forms application a

Pulling Information by Associating Tables in Database (Inner Join)

Pulling Information by Associating Tables in Database (Inner Join)

To fetch data from the database, we use the SELECT command. With a command like SELECT * FROM table_name, we retrieve our data from the table_name table. If we need to fetch data based on a condition,

What is MongoDB and NoSQL?

What is MongoDB and NoSQL?

MongoDB is a NoSQL database. NoSQL can be expanded as "not only SQL," meaning it's not SQL. This is because the queries executed are not the ones you're used to in MySQL or MS SQL systems. Advantages

PHP Data Object - PDO

PHP Data Object - PDO

I had explained how to connect to a database and execute queries in PHP.Classic database connection is done with the mysql_connect() command, and query execution is done with mysql_query(), but the PD

Laravel Blog System - AlphaBlog

Laravel Blog System - AlphaBlog

I have completed developing a blog system for my own website in my spare time, and I have open-sourced it on my Github account. This blog system was developed with Laravel and MongoDB was used as the

Laravel - Meilisearch and MongoDB Integration

Laravel - Meilisearch and MongoDB Integration

In my previous writings, I talked about integrating Laravel with both Meilisearch and MongoDB separately. In this piece, I'll discuss how to use all three together. As I mentioned in my previous post

Laravel and MongoDB Integration

Laravel and MongoDB Integration

Hello, due to my busy schedule, I haven't been able to write blog posts for a long time. In this article, I will explain how to use MongoDB in your Laravel project. Laravel is installed by default wit

PHP Variable Definition and If - Else structure

PHP Variable Definition and If - Else structure

Variable Declaration In PHP, variables are defined with the $ sign.$variable = variable value; There are some rules for defining variables. Variables cannot start with a number. Turkish characters ca