Skip to content

Commit 33f4b4b

Browse files
v0.7.3
1 parent 0dad589 commit 33f4b4b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://static.wikia.nocookie.net/arnelify/images/c/c8/Arnelify-logo-2024.png/revision/latest?cb=20240701012515" style="width:336px;" alt="Arnelify Logo" />
22

3-
![Arnelify ORM for C++](https://img.shields.io/badge/Arnelify%20ORM%20for%20C++-0.7.2-yellow) ![C++](https://img.shields.io/badge/C++-2b-red) ![G++](https://img.shields.io/badge/G++-14.2.0-blue) ![C-Lang](https://img.shields.io/badge/CLang-14.0.6-blue)
3+
![Arnelify ORM for C++](https://img.shields.io/badge/Arnelify%20ORM%20for%20C++-0.7.3-yellow) ![C++](https://img.shields.io/badge/C++-2b-red) ![G++](https://img.shields.io/badge/G++-14.2.0-blue) ![C-Lang](https://img.shields.io/badge/CLang-14.0.6-blue)
44

55
## 🚀 About
66
**Arnelify® ORM for C++** - is a minimalistic dynamic library which is an ORM written in C and C++.
@@ -53,7 +53,7 @@ This software is licensed under the <a href="https://github.com/arnelify/arnelif
5353
Join us to help improve this software, fix bugs or implement new functionality. Active participation will help keep the software up-to-date, reliable, and aligned with the needs of its users.
5454

5555
## ⭐ Release Notes
56-
Version 0.7.2 - Minimalistic dynamic library
56+
Version 0.7.3 - Minimalistic dynamic library
5757

5858
We are excited to introduce the Arnelify ORM for C++ dynamic library! Please note that this version is raw and still in active development.
5959

src/mysql/query/index.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ class MySQLQuery {
441441
}
442442

443443
MySQLQuery* join(const std::string& tableName) {
444+
this->hasOn = false;
444445
this->query += " JOIN " + tableName;
445446
return this;
446447
}
@@ -457,6 +458,7 @@ class MySQLQuery {
457458
}
458459

459460
MySQLQuery* leftJoin(const std::string& tableName) {
461+
this->hasOn = false;
460462
this->query += " LEFT JOIN " + tableName;
461463
return this;
462464
}
@@ -628,6 +630,7 @@ class MySQLQuery {
628630
}
629631

630632
MySQLQuery* rightJoin(const std::string& tableName) {
633+
this->hasOn = false;
631634
this->query += " RIGHT JOIN " + tableName;
632635
return this;
633636
}

src/tests/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
build/*

0 commit comments

Comments
 (0)