<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ibrahim Dabwan Al Mekhlafi </title>
    <description>The latest articles on DEV Community by Ibrahim Dabwan Al Mekhlafi  (@ibr4nx).</description>
    <link>https://dev.to/ibr4nx</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3778440%2Fdfebd55b-0140-4f38-a970-c26cec48b5fb.jpg</url>
      <title>DEV Community: Ibrahim Dabwan Al Mekhlafi </title>
      <link>https://dev.to/ibr4nx</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ibr4nx"/>
    <language>en</language>
    <item>
      <title>How to connect DataBase SQL in windows Form How to connect DataBase SQL in windows Form</title>
      <dc:creator>Ibrahim Dabwan Al Mekhlafi </dc:creator>
      <pubDate>Thu, 27 Aug 2026 15:52:39 +0000</pubDate>
      <link>https://dev.to/ibr4nx/how-to-connect-database-sql-in-windows-form-how-to-connect-database-sql-in-windows-form-51ef</link>
      <guid>https://dev.to/ibr4nx/how-to-connect-database-sql-in-windows-form-how-to-connect-database-sql-in-windows-form-51ef</guid>
      <description>&lt;p&gt;Create file .cs &lt;br&gt;
`&lt;br&gt;
using System;&lt;br&gt;
using System.Collections.Generic;&lt;br&gt;
using System.Linq;&lt;br&gt;
using System.Text;&lt;br&gt;
using System.Threading.Tasks;&lt;br&gt;
using System.Data.SqlClient;&lt;br&gt;
using System.Data;&lt;br&gt;
using System.Windows.Forms;&lt;/p&gt;

&lt;p&gt;namespace PharmachyManagementSystem&lt;br&gt;
{&lt;br&gt;
     class function&lt;br&gt;
    {&lt;br&gt;
        protected SqlConnection getConnection()&lt;br&gt;
            {&lt;br&gt;
            SqlConnection con = new SqlConnection();&lt;br&gt;
            con.ConnectionString = "Server=ServerName;database=DataBaseName; integrated security = True";&lt;br&gt;
            return con;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        }

    public DataSet getData(String query)
    {
        SqlConnection con = getConnection();
        SqlCommand cmd = new SqlCommand();
        cmd.Connection = con;
        cmd.CommandText = query;
        SqlDataAdapter da = new SqlDataAdapter(cmd);
        DataSet ds = new DataSet();
        da.Fill(ds);
        return ds;

    }

    public void setData(String query, string msg)
    {
        SqlConnection con = getConnection();
        SqlCommand cmd = new SqlCommand();
        cmd.Connection= con;
        con.Open();
        cmd.CommandText= query;
        cmd.ExecuteNonQuery();
        con.Close();
        MessageBox.Show(msg, "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);

    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;br&gt;
`&lt;br&gt;
End .&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>microsoft</category>
      <category>sqlserver</category>
    </item>
    <item>
      <title>CinemaCineGlide — A Cinema Management System</title>
      <dc:creator>Ibrahim Dabwan Al Mekhlafi </dc:creator>
      <pubDate>Wed, 26 Aug 2026 20:46:58 +0000</pubDate>
      <link>https://dev.to/ibr4nx/cinemacineglide-a-cinema-management-system-13nl</link>
      <guid>https://dev.to/ibr4nx/cinemacineglide-a-cinema-management-system-13nl</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fs374p2423sq2z2gyxfhd.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fs374p2423sq2z2gyxfhd.jpeg" alt=" " width="800" height="375"&gt;&lt;/a&gt; &lt;br&gt;
I recently worked on CinemaCineGlide, a cinema management system built to make movie booking and cinema management easier and more organized.&lt;/p&gt;

&lt;p&gt;What does it do?&lt;/p&gt;

&lt;p&gt;The system provides features for managing movies, cinemas, bookings, and customers in one place.&lt;/p&gt;

&lt;p&gt;The main goal was to build a practical project while improving my skills in software development, database design, and building real-world applications.&lt;/p&gt;

&lt;p&gt;What I learned&lt;/p&gt;

&lt;p&gt;While working on this project, I gained more experience with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Designing a database structure&lt;/li&gt;
&lt;li&gt;Building application logic&lt;/li&gt;
&lt;li&gt;Managing user and booking data&lt;/li&gt;
&lt;li&gt;Creating a simple and usable interface&lt;/li&gt;
&lt;li&gt;Organizing a complete software project&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This project also helped me understand how different parts of an application work together as one system.&lt;/p&gt;

&lt;p&gt;What's next?&lt;/p&gt;

&lt;p&gt;I’m planning to keep improving the project and add more features over time.&lt;/p&gt;

&lt;p&gt;You can check out the project on GitHub:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/IBR4NX/CinemaCineGlide" rel="noopener noreferrer"&gt;https://github.com/IBR4NX/CinemaCineGlide&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback and suggestions are welcome.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>github</category>
      <category>php</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Next.js</title>
      <dc:creator>Ibrahim Dabwan Al Mekhlafi </dc:creator>
      <pubDate>Wed, 18 Feb 2026 01:19:15 +0000</pubDate>
      <link>https://dev.to/ibr4nx/nextjs-5ajp</link>
      <guid>https://dev.to/ibr4nx/nextjs-5ajp</guid>
      <description></description>
    </item>
  </channel>
</rss>
