new mysql db auto-query generator

karxix

New member
XNullUser
Joined
Jul 1, 2022
Messages
1
Reaction score
0
Points
1
NullCash
1
Hello,
I created a tool that automatically creates the database queries based on simple text, for example:
cars:id,name
car_colors:id,name,car_id

Would automatically create the sql needed for those tables, with the correct field type (int,text,varchar,primary key,auto increment,etc).
Wanted to see how useful you might find something like this,
I have it here and did it a while back, thinking of improving on it, as I find it saves some time specially when you need to create databases often:
 
Top