-
Notifications
You must be signed in to change notification settings - Fork 0
/
HighScoresDataSet.xsd
54 lines (54 loc) · 4.89 KB
/
HighScoresDataSet.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="HighScoresDataSet" targetNamespace="http://tempuri.org/HighScoresDataSet.xsd" xmlns:mstns="http://tempuri.org/HighScoresDataSet.xsd" xmlns="http://tempuri.org/HighScoresDataSet.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="HighScoresConnectionString1" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="HighScoresConnectionString1 (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.CarRacingGame.Properties.Settings.GlobalReference.Default.HighScoresConnectionString1" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="HighScoresTableAdapter" GeneratorDataComponentClassName="HighScoresTableAdapter" Name="HighScores" UserDataComponentName="HighScoresTableAdapter">
<MainSource>
<DbSource ConnectionRef="HighScoresConnectionString1 (Settings)" DbObjectName="dbo.HighScores" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT UserName, BestScore, Date FROM dbo.HighScores</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="UserName" DataSetColumn="UserName" />
<Mapping SourceColumn="BestScore" DataSetColumn="BestScore" />
<Mapping SourceColumn="Date" DataSetColumn="Date" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="HighScoresDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="True" msprop:Generator_DataSetName="HighScoresDataSet" msprop:Generator_UserDSName="HighScoresDataSet">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="HighScores" msprop:Generator_TableClassName="HighScoresDataTable" msprop:Generator_TableVarName="tableHighScores" msprop:Generator_TablePropName="HighScores" msprop:Generator_RowDeletingName="HighScoresRowDeleting" msprop:Generator_RowChangingName="HighScoresRowChanging" msprop:Generator_RowEvHandlerName="HighScoresRowChangeEventHandler" msprop:Generator_RowDeletedName="HighScoresRowDeleted" msprop:Generator_UserTableName="HighScores" msprop:Generator_RowChangedName="HighScoresRowChanged" msprop:Generator_RowEvArgName="HighScoresRowChangeEvent" msprop:Generator_RowClassName="HighScoresRow">
<xs:complexType>
<xs:sequence>
<xs:element name="UserName" msprop:Generator_ColumnVarNameInTable="columnUserName" msprop:Generator_ColumnPropNameInRow="UserName" msprop:Generator_ColumnPropNameInTable="UserNameColumn" msprop:Generator_UserColumnName="UserName">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="BestScore" msprop:Generator_ColumnVarNameInTable="columnBestScore" msprop:Generator_ColumnPropNameInRow="BestScore" msprop:Generator_ColumnPropNameInTable="BestScoreColumn" msprop:Generator_UserColumnName="BestScore" type="xs:int" />
<xs:element name="Date" msprop:Generator_ColumnVarNameInTable="columnDate" msprop:Generator_ColumnPropNameInRow="Date" msprop:Generator_ColumnPropNameInTable="DateColumn" msprop:Generator_UserColumnName="Date" type="xs:dateTime" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>