-
Notifications
You must be signed in to change notification settings - Fork 0
SQLSetup
Supernick19 edited this page May 15, 2015
·
2 revisions
- Open SQL Server Management Studio. Use standard login
- Under security, right click the Logins folder. Click "New Login.."
- Type in a login name
- Click "SQL Server authentication"
- Type password and confirm password
- Uncheck enforce password policy
- Click OK
- Right click on the current database connection (Eg. "(local) (SQL Server 11.0.2100")
- Click properties
- Click Security on the "Select a page" menu
- Click SQL Server and Windows Authentication mode
- Restart the database
- Open the start menu and type "run". Click on the first program that is displayed
- Type SQLServerManager11.msc and press enter (or in the start menu type SQL Server Configuration Manager)
- Click "SQL Server Services"
- Right click SQL Server (SERVICENAME)
- Click restart
- Verify Connection
- Open an new instance of SQL Server Management Studio
- Click the drop down next to Authentication, select Sql Server Authentication
- Type in the username and password you used in the previous steps
- Initial Setup is Complete!
- If problems persist, change the tcp/ip to a static port mode
- Open SQL Server Configuration Manager
- Click on SQL Server Network Configuration
- Click on Protocols for SQLSERVER
- Ensure TCP/IP is Enabled
- Double click TCP/IP
- Click on the IP Addresses tab
- Scroll to the bottom, and under IPALL set TCP Dynamic Ports to empty, and TCP Port to 1433
- Restart SQL Server again
- Continue with setup here
- Open a
MySql
SQL editor (either through the workbench or in the terminal) - Create a user on localhost
CREATE USER 'userName'@'localhost' IDENTIFIED BY 'mypass';
- Grand all access to this user
GRANT ALL PRIVILEGES ON * . * TO 'userName'@'localhost';
- If making the server public, repeat the steps above for '%' instead of 'localhost'
- Verify the connection by testing the login in the terminal (Or continue here if using windows)
mysql -u userName -p
- If using Linux,
MySql
must be started in case insensitive mode. See here for instructions.
-
Quickforms Basics
-
Tutorials
- Setup Tutorials
- App Development Tutorials
-
Assignments
-
Project
-
Applications
-
Quickforms Advanced
- Project With Database
- Advanced Setup
- HealthApp with Database
- Source Control
- Joining the Team
- Cordova Native Application
- Miscellaneous
- Project With Database
-
-
Form Controls
-
App Controls
-
Report Controls
-
Server Controls
-
Quickforms DAO
-
Email Notification
-
Migrating QuickForms3(Test Server) to QuickForms(Production-Server)