File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# MySQL-To-CSharp
2
- Generates C# classes for every table in a MySQL database
2
+ This tool generates C# classes and markup pages for entire MySQL databases (including tables).
3
+
4
+ # How to use
5
+ Run the program with the following arguments
6
+
7
+ Parameter | Default value | Description
8
+ --- | --- | ---
9
+ -i | 127.0.0.1 | (optional) IP address of the MySQL server, will use 127.0.0.1 if not specified
10
+ -n | 3306 | (optional) Port number of the MySQL server, will use 3306 if not specified
11
+ -u | root | (optional) Username, will use root if not specified
12
+ -p | | (optional) Password, will use empty password if not specified
13
+ -d | | Database name
14
+ -t | | (optional) Table name, will generate entire database if not specified
15
+ -g | | (optional) Generate a reading constructor and SQL statement output - Activate with -g true
16
+ -m | | (optional) Generate markup pages for database and tables which can be used in wikis - Activate with -m true
You can’t perform that action at this time.
0 commit comments