Skip to content

Commit 529ccb9

Browse files
authored
Add files via upload
1 parent f74bd7d commit 529ccb9

File tree

3 files changed

+96
-0
lines changed

3 files changed

+96
-0
lines changed

C-Sharf Classes.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.421
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "C-Sharf Classes", "C-Sharf Classes\C-Sharf Classes.csproj", "{C61FFA56-222A-4524-AC7C-9625C2BB50CF}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C61FFA56-222A-4524-AC7C-9625C2BB50CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C61FFA56-222A-4524-AC7C-9625C2BB50CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C61FFA56-222A-4524-AC7C-9625C2BB50CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C61FFA56-222A-4524-AC7C-9625C2BB50CF}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {AB87AB28-ADBB-4DCB-8FE4-B85EB3FF6F05}
24+
EndGlobalSection
25+
EndGlobal

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Wilfred V. Pine
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

dbinformation.sql

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 4.9.2
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: 127.0.0.1:3306
6+
-- Generation Time: Feb 16, 2021 at 11:17 AM
7+
-- Server version: 8.0.18
8+
-- PHP Version: 7.2.25
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
SET AUTOCOMMIT = 0;
12+
START TRANSACTION;
13+
SET time_zone = "+00:00";
14+
15+
16+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
17+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
18+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
19+
/*!40101 SET NAMES utf8mb4 */;
20+
21+
--
22+
-- Database: `dbinformation`
23+
--
24+
25+
-- --------------------------------------------------------
26+
27+
--
28+
-- Table structure for table `users`
29+
--
30+
31+
DROP TABLE IF EXISTS `users`;
32+
CREATE TABLE IF NOT EXISTS `users` (
33+
`userid` int(11) NOT NULL AUTO_INCREMENT,
34+
`username` varchar(255) NOT NULL,
35+
`password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
36+
`sex` varchar(6) NOT NULL,
37+
PRIMARY KEY (`userid`)
38+
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
39+
40+
--
41+
-- Dumping data for table `users`
42+
--
43+
44+
INSERT INTO `users` (`userid`, `username`, `password`, `sex`) VALUES
45+
(5, 'user101', 'MTIzNDU2Nzg=', 'MALE');
46+
COMMIT;
47+
48+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
49+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
50+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)