Skip to content

Commit b9c6459

Browse files
authored
Update README.md
1 parent 7d43f82 commit b9c6459

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ The best Java query builder/SQL connector.
44
## What's AdvancedSQL?
55
AdvancedSQL is a SQL query builder and/or connector that helps you to generate/modify information on the database without even have to write any line of SQL code, which sometimes is kindof boring and tiring. AdvancedSQL is the best exit for that developers who wants to continue coding without having to write out-of-syntax code (SQL queries) on Java code.
66

7+
## Documentation:
8+
Connect to the Database:
9+
```java
10+
try {
11+
MySQL mySQL = new MySQL("127.0.0.1", 3306, "root", "", "unittesting");
12+
13+
if (mySQL.isConnected()) {
14+
System.out.println("Connected!");
15+
}
16+
} catch (SQLException e) {
17+
e.printStackTrace();
18+
}
19+
```
20+
721
## Licensing information
822
This project is licensed under LGPL-3.0. Please see the [LICENSE](/LICENSE) file for details.
923

0 commit comments

Comments
 (0)