Skip to content

Commit

Permalink
Lots of DB based changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cool00geek committed Mar 13, 2017
1 parent 812677a commit bee0a99
Show file tree
Hide file tree
Showing 45 changed files with 2,135 additions and 21 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/build/
/dist/
/dist/
/Clients/CTSBDB/nbproject/private/
/Clients/CTSBDB/build/
/Clients/CTSBDB/dist/
Binary file removed CPscoreboard.jar
Binary file not shown.
Binary file added Clients/C# DB Sender/.vs/CSDB/v14/.suo
Binary file not shown.
22 changes: 22 additions & 0 deletions Clients/C# DB Sender/CSDB.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSDB", "CSDB\CSDB.csproj", "{A60A2E95-9EC7-448E-B499-0B83DBE6B51F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A60A2E95-9EC7-448E-B499-0B83DBE6B51F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A60A2E95-9EC7-448E-B499-0B83DBE6B51F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A60A2E95-9EC7-448E-B499-0B83DBE6B51F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A60A2E95-9EC7-448E-B499-0B83DBE6B51F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions Clients/C# DB Sender/CSDB/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
60 changes: 60 additions & 0 deletions Clients/C# DB Sender/CSDB/CSDB.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A60A2E95-9EC7-448E-B499-0B83DBE6B51F}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CSDB</RootNamespace>
<AssemblyName>CSDB</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
46 changes: 46 additions & 0 deletions Clients/C# DB Sender/CSDB/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
using System;
using System.Data.Odbc;
using DT = System.Data;
using QC = System.Data.SqlClient;

namespace CSDB
{
class Program
{
static void Main(string[] args)
{
String username = "";
String password = "";
string connectionString = "Server = tcp:ctsb.database.windows.net,1433; Initial Catalog = CPscores; Persist Security Info = False; User ID = " + username + "; Password =" + password + "; MultipleActiveResultSets = False; Encrypt = True; TrustServerCertificate = False; Connection Timeout = 30;";
string cmd = "INSERT INTO TeamScores (TeamName,Score,Time) VALUES (@val1, @val2, @val3)";
using (QC.SqlConnection conn = new QC.SqlConnection(connectionString))
{
using (QC.SqlCommand command = new QC.SqlCommand(cmd))
{
command.Connection = conn;
//command.CommandString = cmd;

command.Parameters.AddWithValue("@val1", "Matrix");
command.Parameters.AddWithValue("@val2", 9000);
command.Parameters.AddWithValue("@val3", 80);

try
{
Console.WriteLine("Opening connection...");
conn.Open();
Console.WriteLine("Transmitting data!");
command.ExecuteNonQuery();
Console.WriteLine("Done!");
}
catch(QC.SqlException e)
{
Console.WriteLine("An error has occured");
Console.WriteLine(e);
}
}
}
Console.Write("Press any key to continue...");
Console.ReadKey(true);
}
}
}
36 changes: 36 additions & 0 deletions Clients/C# DB Sender/CSDB/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("CSDB")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CSDB")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("a60a2e95-9ec7-448e-b499-0b83dbe6b51f")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file added Clients/C# DB Sender/CSDB/bin/Debug/CSDB.exe
Binary file not shown.
6 changes: 6 additions & 0 deletions Clients/C# DB Sender/CSDB/bin/Debug/CSDB.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
Binary file added Clients/C# DB Sender/CSDB/bin/Debug/CSDB.pdb
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions Clients/C# DB Sender/CSDB/bin/Debug/CSDB.vshost.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
11 changes: 11 additions & 0 deletions Clients/C# DB Sender/CSDB/bin/Debug/CSDB.vshost.exe.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
C:\Users\Vinay\Desktop\CSDB\CSDB\bin\Debug\CSDB.exe.config
C:\Users\Vinay\Desktop\CSDB\CSDB\bin\Debug\CSDB.exe
C:\Users\Vinay\Desktop\CSDB\CSDB\bin\Debug\CSDB.pdb
C:\Users\Vinay\Desktop\CSDB\CSDB\obj\Debug\CSDB.csprojResolveAssemblyReference.cache
C:\Users\Vinay\Desktop\CSDB\CSDB\obj\Debug\CSDB.exe
C:\Users\Vinay\Desktop\CSDB\CSDB\obj\Debug\CSDB.pdb
D:\CPscoreboard\Clients\CSDB\CSDB\bin\Debug\CSDB.exe.config
D:\CPscoreboard\Clients\CSDB\CSDB\obj\Debug\CSDB.exe
D:\CPscoreboard\Clients\CSDB\CSDB\obj\Debug\CSDB.pdb
D:\CPscoreboard\Clients\CSDB\CSDB\bin\Debug\CSDB.exe
D:\CPscoreboard\Clients\CSDB\CSDB\bin\Debug\CSDB.pdb
D:\CPscoreboard\Clients\CSDB\CSDB\obj\Debug\CSDB.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file added Clients/C# DB Sender/CSDB/obj/Debug/CSDB.exe
Binary file not shown.
Binary file added Clients/C# DB Sender/CSDB/obj/Debug/CSDB.pdb
Binary file not shown.
Binary file not shown.
Binary file added Clients/DBMan.jar
Binary file not shown.
73 changes: 73 additions & 0 deletions Clients/Java DB Manager/build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project name="CTSBDB" default="default" basedir=".">
<description>Builds, tests, and runs the project CTSBDB.</description>
<import file="nbproject/build-impl.xml"/>
<!--
There exist several targets which are by default empty and which can be
used for execution of your tasks. These targets are usually executed
before and after some main targets. They are:
-pre-init: called before initialization of project properties
-post-init: called after initialization of project properties
-pre-compile: called before javac compilation
-post-compile: called after javac compilation
-pre-compile-single: called before javac compilation of single file
-post-compile-single: called after javac compilation of single file
-pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test
-pre-jar: called before JAR building
-post-jar: called after JAR building
-post-clean: called after cleaning build products
(Targets beginning with '-' are not intended to be called on their own.)
Example of inserting an obfuscator after compilation could look like this:
<target name="-post-compile">
<obfuscate>
<fileset dir="${build.classes.dir}"/>
</obfuscate>
</target>
For list of available properties check the imported
nbproject/build-impl.xml file.
Another way to customize the build is by overriding existing main targets.
The targets of interest are:
-init-macrodef-javac: defines macro for javac compilation
-init-macrodef-junit: defines macro for junit execution
-init-macrodef-debug: defines macro for class debugging
-init-macrodef-java: defines macro for class execution
-do-jar: JAR building
run: execution of project
-javadoc-build: Javadoc generation
test-report: JUnit report generation
An example of overriding the target for project execution could look like this:
<target name="run" depends="CTSBDB-impl.jar">
<exec dir="bin" executable="launcher.exe">
<arg file="${dist.jar}"/>
</exec>
</target>
Notice that the overridden target depends on the jar target and not only on
the compile target as the regular run target does. Again, for a list of available
properties which you can use, check the target you are overriding in the
nbproject/build-impl.xml file.
-->
</project>
4 changes: 4 additions & 0 deletions Clients/Java DB Manager/build/built-jar.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#Sun, 12 Mar 2017 20:36:44 -0800


D\:\\CPscoreboard\\Clients\\CTSBDB=
Binary file not shown.
Binary file not shown.
Binary file added Clients/Java DB Manager/dist/CTSBDB.jar
Binary file not shown.
32 changes: 32 additions & 0 deletions Clients/Java DB Manager/dist/README.TXT
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
========================
BUILD OUTPUT DESCRIPTION
========================

When you build an Java application project that has a main class, the IDE
automatically copies all of the JAR
files on the projects classpath to your projects dist/lib folder. The IDE
also adds each of the JAR files to the Class-Path element in the application
JAR files manifest file (MANIFEST.MF).

To run the project from the command line, go to the dist folder and
type the following:

java -jar "CTSBDB.jar"

To distribute this project, zip up the dist folder (including the lib folder)
and distribute the ZIP file.

Notes:

* If two JAR files on the project classpath have the same name, only the first
JAR file is copied to the lib folder.
* Only JAR files are copied to the lib folder.
If the classpath contains other types of files or folders, these files (folders)
are not copied.
* If a library on the projects classpath also has a Class-Path element
specified in the manifest,the content of the Class-Path element has to be on
the projects runtime path.
* To set a main class in a standard Java project, right-click the project node
in the Projects window and choose Properties. Then click Run and enter the
class name in the Main Class field. Alternatively, you can manually type the
class name in the manifest Main-Class element.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions Clients/Java DB Manager/lib/nblibraries.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libs.CopyLibs.classpath=\
${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar
libs.CopyLibs.displayName=CopyLibs Task
libs.CopyLibs.prop-version=2.0
3 changes: 3 additions & 0 deletions Clients/Java DB Manager/manifest.mf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build

Loading

0 comments on commit bee0a99

Please sign in to comment.