Alright so yesterday I was going through my old things and found my old flash drive that contained an old source that I don't quite frankly remember well. I managed to configure it to try and get it up and running but I'm not sure what MySQL management tool works with it. Mind you, the actual configuration hints to MSSQL which is microsoft's own SQL Server but I have tried implementing the SQL file with microsoft's SQL workbench to no avail. Basically, it tells me that my connection timed out everytime I dump the SQL in a database.
EDIT: I fixed the timeout issue but a different issue persists and I think it's with the SQL file itself.
The error I get is as follows:
Code:
ERROR 1064 (42000) at line 21: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[dbo].[Accounts]
GO
CREATE TABLE [dbo].[Accounts] (
[AccountID] int NOT NULL IDE' at line 1
Operation failed with exitcode 1
Now, I'm still getting myself familiarized once again with all this. With that being said, my question is this: How would I actually implement the SQL into Workbench without it kicking this error back at me?
Any advice is greatly appreciated and taken into account. Thanks again.