SlideShare une entreprise Scribd logo
1  sur  16
Student Information System



Imports System
Imports System.Data
Imports System.Runtime.Serialization
Imports System.Xml
<Serializable(),     _
System.ComponentModel.DesignerCategoryAttribute("code"),    _
System.Diagnostics.DebuggerStepThrough(),       _
System.ComponentModel.ToolboxItem(true)>         _
Public Class DataSet1
   Inherits DataSet


   Private tableDEPARTINGFLIGHTS As DEPARTINGFLIGHTSDataTable


   Public Sub New()
        MyBase.New
        Me.InitClass
        Dim
schemaChangedHandler As System.ComponentModel.CollectionChangeEventHandler =
AddressOf Me.SchemaChanged
        AddHandler Me.Tables.CollectionChanged, schemaChangedHandler
        AddHandler Me.Relations.CollectionChanged, schemaChangedHandler
   End Sub


   Protected Sub New(ByVal info As SerializationInfo, ByVal
context As StreamingContext)
        MyBase.New
        Dim
strSchema As String = CType(info.GetValue("XmlSchema", GetType(System.String)
),String)
        If (Not (strSchema) Is Nothing) Then
              Dim ds As DataSet = New DataSet


ds.ReadXmlSchema(New XmlTextReader(New System.IO.StringReader(strSchema)))
              If (Not (ds.Tables("DEPARTINGFLIGHTS")) Is Nothing) Then
Me.Tables.Add(New DEPARTINGFLIGHTSDataTable(ds.Tables("DEPARTINGFLIGHTS")))
              End If
              Me.DataSetName = ds.DataSetName
              Me.Prefix = ds.Prefix
              Me.Namespace = ds.Namespace
              Me.Locale = ds.Locale
              Me.CaseSensitive = ds.CaseSensitive
              Me.EnforceConstraints = ds.EnforceConstraints
              Me.Merge(ds, false, System.Data.MissingSchemaAction.Add)
              Me.InitVars
       Else
              Me.InitClass
       End If
       Me.GetSerializationData(info, context)
       Dim
schemaChangedHandler As System.ComponentModel.CollectionChangeEventHandler =
AddressOf Me.SchemaChanged
       AddHandler Me.Tables.CollectionChanged, schemaChangedHandler
       AddHandler Me.Relations.CollectionChanged, schemaChangedHandler
   End Sub


   <System.ComponentModel.Browsable(false),      _


System.ComponentModel.DesignerSerializationVisibilityAttribute(System.Compon
entModel.DesignerSerializationVisibility.Content)>   _
   Public ReadOnly Property DEPARTINGFLIGHTS As DEPARTINGFLIGHTSDataTable
       Get
              Return Me.tableDEPARTINGFLIGHTS
       End Get
   End Property


   Public Overrides Function Clone() As DataSet
       Dim cln As DataSet1 = CType(MyBase.Clone,DataSet1)
       cln.InitVars
       Return cln
   End Function
Protected Overrides Function ShouldSerializeTables() As Boolean
       Return false
   End Function


   Protected Overrides Function ShouldSerializeRelations() As Boolean
       Return false
   End Function


   Protected Overrides Sub ReadXmlSerializable(ByVal reader As XmlReader)
       Me.Reset
       Dim ds As DataSet = New DataSet
       ds.ReadXml(reader)
       If (Not (ds.Tables("DEPARTINGFLIGHTS")) Is Nothing) Then


Me.Tables.Add(New DEPARTINGFLIGHTSDataTable(ds.Tables("DEPARTINGFLIGHTS")))
       End If
       Me.DataSetName = ds.DataSetName
       Me.Prefix = ds.Prefix
       Me.Namespace = ds.Namespace
       Me.Locale = ds.Locale
       Me.CaseSensitive = ds.CaseSensitive
       Me.EnforceConstraints = ds.EnforceConstraints
       Me.Merge(ds, false, System.Data.MissingSchemaAction.Add)
       Me.InitVars
   End Sub




 Protected Overrides Function GetSchemaSerializable() As System.Xml.Schema.X
mlSchema
       Dim stream As System.IO.MemoryStream = New System.IO.MemoryStream
       Me.WriteXmlSchema(New XmlTextWriter(stream, Nothing))
       stream.Position = 0


 Return System.Xml.Schema.XmlSchema.Read(New XmlTextReader(stream), Nothing)
   End Function


   Friend Sub InitVars()
Me.tableDEPARTINGFLIGHTS = CType(Me.Tables("DEPARTINGFLIGHTS"),DEPARTINGFLIGH
TSDataTable)
       If (Not (Me.tableDEPARTINGFLIGHTS) Is Nothing) Then
             Me.tableDEPARTINGFLIGHTS.InitVars
       End If
   End Sub


   Private Sub InitClass()
       Me.DataSetName = "DataSet1"
       Me.Prefix = ""
       Me.Namespace = "http://www.tempuri.org/DataSet1.xsd"
       Me.Locale = New System.Globalization.CultureInfo("en-US")
       Me.CaseSensitive = false
       Me.EnforceConstraints = true
       Me.tableDEPARTINGFLIGHTS = New DEPARTINGFLIGHTSDataTable
       Me.Tables.Add(Me.tableDEPARTINGFLIGHTS)
   End Sub


   Private Function ShouldSerializeDEPARTINGFLIGHTS() As Boolean
       Return false
   End Function


   Private Sub SchemaChanged(ByVal sender As Object, ByVal
e As System.ComponentModel.CollectionChangeEventArgs)


 If (e.Action = System.ComponentModel.CollectionChangeAction.Remove) Then
             Me.InitVars
       End If
   End Sub


   Public Delegate Sub DEPARTINGFLIGHTSRowChangeEventHandler(ByVal
sender As Object, ByVal e As DEPARTINGFLIGHTSRowChangeEvent)


   <System.Diagnostics.DebuggerStepThrough()>     _
   Public Class DEPARTINGFLIGHTSDataTable
       Inherits DataTable
       Implements System.Collections.IEnumerable
Private columnFLIGHTNO As DataColumn


     Private columnORIGIN As DataColumn


     Private columnDEPTIME As DataColumn


     Private columnDESTINATION As DataColumn


     Private columnARRTIME As DataColumn


     Private columnVIA As DataColumn


     Private columnDAYS As DataColumn


     Friend Sub New()
         MyBase.New("DEPARTINGFLIGHTS")
         Me.InitClass
     End Sub


     Friend Sub New(ByVal table As DataTable)
         MyBase.New(table.TableName)


If (table.CaseSensitive <> table.DataSet.CaseSensitive) Then
               Me.CaseSensitive = table.CaseSensitive
         End If


If (table.Locale.ToString <> table.DataSet.Locale.ToString) Then
               Me.Locale = table.Locale
         End If
         If (table.Namespace <> table.DataSet.Namespace) Then
               Me.Namespace = table.Namespace
         End If
         Me.Prefix = table.Prefix
         Me.MinimumCapacity = table.MinimumCapacity
         Me.DisplayExpression = table.DisplayExpression
     End Sub


     <System.ComponentModel.Browsable(false)>     _
Public ReadOnly Property Count As Integer
    Get
          Return Me.Rows.Count
    End Get
End Property


Friend ReadOnly Property FLIGHTNOColumn As DataColumn
    Get
          Return Me.columnFLIGHTNO
    End Get
End Property


Friend ReadOnly Property ORIGINColumn As DataColumn
    Get
          Return Me.columnORIGIN
    End Get
End Property


Friend ReadOnly Property DEPTIMEColumn As DataColumn
    Get
          Return Me.columnDEPTIME
    End Get
End Property


Friend ReadOnly Property DESTINATIONColumn As DataColumn
    Get
          Return Me.columnDESTINATION
    End Get
End Property


Friend ReadOnly Property ARRTIMEColumn As DataColumn
    Get
          Return Me.columnARRTIME
    End Get
End Property


Friend ReadOnly Property VIAColumn As DataColumn
    Get
Return Me.columnVIA
           End Get
       End Property


       Friend ReadOnly Property DAYSColumn As DataColumn
           Get
                 Return Me.columnDAYS
           End Get
       End Property


       Public Default ReadOnly Property Item(ByVal
index As Integer) As DEPARTINGFLIGHTSRow
           Get
                 Return CType(Me.Rows(index),DEPARTINGFLIGHTSRow)
           End Get
       End Property


       Public Event
DEPARTINGFLIGHTSRowChanged As DEPARTINGFLIGHTSRowChangeEventHandler


       Public Event
DEPARTINGFLIGHTSRowChanging As DEPARTINGFLIGHTSRowChangeEventHandler


       Public Event
DEPARTINGFLIGHTSRowDeleted As DEPARTINGFLIGHTSRowChangeEventHandler


       Public Event
DEPARTINGFLIGHTSRowDeleting As DEPARTINGFLIGHTSRowChangeEventHandler


       Public Overloads Sub AddDEPARTINGFLIGHTSRow(ByVal
row As DEPARTINGFLIGHTSRow)
           Me.Rows.Add(row)
       End Sub


       Public Overloads Function AddDEPARTINGFLIGHTSRow(ByVal
FLIGHTNO As String, ByVal ORIGIN As String, ByVal DEPTIME As String, ByVal
DESTINATION As String, ByVal ARRTIME As String, ByVal VIA As String, ByVal
DAYS As String) As DEPARTINGFLIGHTSRow
Dim
rowDEPARTINGFLIGHTSRow As DEPARTINGFLIGHTSRow = CType(Me.NewRow,DEPARTINGFLIG
HTSRow)


rowDEPARTINGFLIGHTSRow.ItemArray = New Object() {FLIGHTNO, ORIGIN, DEPTIME, D
ESTINATION, ARRTIME, VIA, DAYS}
              Me.Rows.Add(rowDEPARTINGFLIGHTSRow)
              Return rowDEPARTINGFLIGHTSRow
          End Function


          Public Function GetEnumerator() As System.Collections.IEnumerator
Implements System.Collections.IEnumerable.GetEnumerator
              Return Me.Rows.GetEnumerator
          End Function


          Public Overrides Function Clone() As DataTable
              Dim
cln As DEPARTINGFLIGHTSDataTable = CType(MyBase.Clone,DEPARTINGFLIGHTSDataTab
le)
              cln.InitVars
              Return cln
          End Function


          Protected Overrides Function CreateInstance() As DataTable
              Return New DEPARTINGFLIGHTSDataTable
          End Function


          Friend Sub InitVars()
              Me.columnFLIGHTNO = Me.Columns("FLIGHTNO")
              Me.columnORIGIN = Me.Columns("ORIGIN")
              Me.columnDEPTIME = Me.Columns("DEPTIME")
              Me.columnDESTINATION = Me.Columns("DESTINATION")
              Me.columnARRTIME = Me.Columns("ARRTIME")
              Me.columnVIA = Me.Columns("VIA")
              Me.columnDAYS = Me.Columns("DAYS")
          End Sub


          Private Sub InitClass()
Me.columnFLIGHTNO = New DataColumn("FLIGHTNO", GetType(System.String), Nothin
g, System.Data.MappingType.Element)
           Me.Columns.Add(Me.columnFLIGHTNO)


Me.columnORIGIN = New DataColumn("ORIGIN", GetType(System.String), Nothing, S
ystem.Data.MappingType.Element)
           Me.Columns.Add(Me.columnORIGIN)


Me.columnDEPTIME = New DataColumn("DEPTIME", GetType(System.String), Nothing,
System.Data.MappingType.Element)
           Me.Columns.Add(Me.columnDEPTIME)


Me.columnDESTINATION = New DataColumn("DESTINATION", GetType(System.String),
Nothing, System.Data.MappingType.Element)
           Me.Columns.Add(Me.columnDESTINATION)


Me.columnARRTIME = New DataColumn("ARRTIME", GetType(System.String), Nothing,
System.Data.MappingType.Element)
           Me.Columns.Add(Me.columnARRTIME)


Me.columnVIA = New DataColumn("VIA", GetType(System.String), Nothing, System.
Data.MappingType.Element)
           Me.Columns.Add(Me.columnVIA)


Me.columnDAYS = New DataColumn("DAYS", GetType(System.String), Nothing, Syste
m.Data.MappingType.Element)
           Me.Columns.Add(Me.columnDAYS)
       End Sub


       Public Function NewDEPARTINGFLIGHTSRow() As DEPARTINGFLIGHTSRow
           Return CType(Me.NewRow,DEPARTINGFLIGHTSRow)
       End Function


       Protected Overrides Function NewRowFromBuilder(ByVal
builder As DataRowBuilder) As DataRow
           Return New DEPARTINGFLIGHTSRow(builder)
       End Function
Protected Overrides Function GetRowType() As System.Type
           Return GetType(DEPARTINGFLIGHTSRow)
       End Function


       Protected Overrides Sub OnRowChanged(ByVal
e As DataRowChangeEventArgs)
           MyBase.OnRowChanged(e)
           If (Not (Me.DEPARTINGFLIGHTSRowChangedEvent) Is Nothing) Then
                 RaiseEvent
DEPARTINGFLIGHTSRowChanged(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Row
,DEPARTINGFLIGHTSRow), e.Action))
           End If
       End Sub


       Protected Overrides Sub OnRowChanging(ByVal
e As DataRowChangeEventArgs)
           MyBase.OnRowChanging(e)
           If (Not (Me.DEPARTINGFLIGHTSRowChangingEvent) Is Nothing) Then
                 RaiseEvent
DEPARTINGFLIGHTSRowChanging(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Ro
w,DEPARTINGFLIGHTSRow), e.Action))
           End If
       End Sub


       Protected Overrides Sub OnRowDeleted(ByVal
e As DataRowChangeEventArgs)
           MyBase.OnRowDeleted(e)
           If (Not (Me.DEPARTINGFLIGHTSRowDeletedEvent) Is Nothing) Then
                 RaiseEvent
DEPARTINGFLIGHTSRowDeleted(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Row
,DEPARTINGFLIGHTSRow), e.Action))
           End If
       End Sub


       Protected Overrides Sub OnRowDeleting(ByVal
e As DataRowChangeEventArgs)
           MyBase.OnRowDeleting(e)
If (Not (Me.DEPARTINGFLIGHTSRowDeletingEvent) Is Nothing) Then
                 RaiseEvent
DEPARTINGFLIGHTSRowDeleting(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Ro
w,DEPARTINGFLIGHTSRow), e.Action))
           End If
       End Sub


       Public Sub RemoveDEPARTINGFLIGHTSRow(ByVal
row As DEPARTINGFLIGHTSRow)
           Me.Rows.Remove(row)
       End Sub
   End Class


   <System.Diagnostics.DebuggerStepThrough()>     _
   Public Class DEPARTINGFLIGHTSRow
       Inherits DataRow


       Private tableDEPARTINGFLIGHTS As DEPARTINGFLIGHTSDataTable


       Friend Sub New(ByVal rb As DataRowBuilder)
           MyBase.New(rb)


Me.tableDEPARTINGFLIGHTS = CType(Me.Table,DEPARTINGFLIGHTSDataTable)
       End Sub


       Public Property FLIGHTNO As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn),String)
                 Catch e As InvalidCastException
                       Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn) = value
           End Set
End Property


       Public Property ORIGIN As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.ORIGINColumn),String)
                 Catch e As InvalidCastException
                       Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.ORIGINColumn) = value
           End Set
       End Property


       Public Property DEPTIME As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn),String)
                 Catch e As InvalidCastException
                       Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn) = value
           End Set
       End Property


       Public Property DESTINATION As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn),String)
                 Catch e As InvalidCastException
Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn) = value
           End Set
       End Property


       Public Property ARRTIME As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn),String)
                 Catch e As InvalidCastException
                       Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn) = value
           End Set
       End Property


       Public Property VIA As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.VIAColumn),String)
                 Catch e As InvalidCastException
                       Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.VIAColumn) = value
           End Set
       End Property
Public Property DAYS As String
           Get
                 Try


 Return CType(Me(Me.tableDEPARTINGFLIGHTS.DAYSColumn),String)
                 Catch e As InvalidCastException
                       Throw New StrongTypingException("Cannot get value because
it is DBNull.", e)
                 End Try
           End Get
           Set
                 Me(Me.tableDEPARTINGFLIGHTS.DAYSColumn) = value
           End Set
       End Property


       Public Function IsFLIGHTNONull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn)
       End Function


       Public Sub SetFLIGHTNONull()


Me(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn) = System.Convert.DBNull
       End Sub


       Public Function IsORIGINNull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.ORIGINColumn)
       End Function


       Public Sub SetORIGINNull()
           Me(Me.tableDEPARTINGFLIGHTS.ORIGINColumn) = System.Convert.DBNull
       End Sub


       Public Function IsDEPTIMENull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn)
       End Function


       Public Sub SetDEPTIMENull()
Me(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn) = System.Convert.DBNull
       End Sub


       Public Function IsDESTINATIONNull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn)
       End Function


       Public Sub SetDESTINATIONNull()


Me(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn) = System.Convert.DBNull
       End Sub


       Public Function IsARRTIMENull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn)
       End Function


       Public Sub SetARRTIMENull()


Me(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn) = System.Convert.DBNull
       End Sub


       Public Function IsVIANull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.VIAColumn)
       End Function


       Public Sub SetVIANull()
           Me(Me.tableDEPARTINGFLIGHTS.VIAColumn) = System.Convert.DBNull
       End Sub


       Public Function IsDAYSNull() As Boolean
           Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.DAYSColumn)
       End Function


       Public Sub SetDAYSNull()
           Me(Me.tableDEPARTINGFLIGHTS.DAYSColumn) = System.Convert.DBNull
       End Sub
   End Class
<System.Diagnostics.DebuggerStepThrough()>   _
   Public Class DEPARTINGFLIGHTSRowChangeEvent
        Inherits EventArgs


        Private eventRow As DEPARTINGFLIGHTSRow


        Private eventAction As DataRowAction


        Public Sub New(ByVal row As DEPARTINGFLIGHTSRow, ByVal
action As DataRowAction)
            MyBase.New
            Me.eventRow = row
            Me.eventAction = action
        End Sub


        Public ReadOnly Property Row As DEPARTINGFLIGHTSRow
            Get
                  Return Me.eventRow
            End Get
        End Property


        Public ReadOnly Property Action As DataRowAction
            Get
                  Return Me.eventAction
            End Get
        End Property
   End Class
End Class

Contenu connexe

Tendances

A Tour to MySQL Commands
A Tour to MySQL CommandsA Tour to MySQL Commands
A Tour to MySQL CommandsHikmat Dhamee
 
supporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tablesupporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tableMahabubur Rahaman
 
Digital Mayflower - Data Pilgrimage with the Drupal Migrate Module
Digital Mayflower - Data Pilgrimage with the Drupal Migrate ModuleDigital Mayflower - Data Pilgrimage with the Drupal Migrate Module
Digital Mayflower - Data Pilgrimage with the Drupal Migrate ModuleErich Beyrent
 
dcs plus Catalogue 2015
dcs plus Catalogue 2015dcs plus Catalogue 2015
dcs plus Catalogue 2015dcs plus
 
Patterns for slick database applications
Patterns for slick database applicationsPatterns for slick database applications
Patterns for slick database applicationsSkills Matter
 
Lithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate FrameworksLithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate FrameworksNate Abele
 
The Origin of Lithium
The Origin of LithiumThe Origin of Lithium
The Origin of LithiumNate Abele
 
Store and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and CassandraStore and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and CassandraDeependra Ariyadewa
 
EclipseCon2011 Cross-Platform Mobile Development with Eclipse
EclipseCon2011 Cross-Platform Mobile Development with EclipseEclipseCon2011 Cross-Platform Mobile Development with Eclipse
EclipseCon2011 Cross-Platform Mobile Development with EclipseHeiko Behrens
 
beyond tellerrand: Mobile Apps with JavaScript – There's More Than Web
beyond tellerrand: Mobile Apps with JavaScript – There's More Than Webbeyond tellerrand: Mobile Apps with JavaScript – There's More Than Web
beyond tellerrand: Mobile Apps with JavaScript – There's More Than WebHeiko Behrens
 
Appendix A Tables
Appendix A   TablesAppendix A   Tables
Appendix A TablesLiquidHub
 
The State of Lithium
The State of LithiumThe State of Lithium
The State of LithiumNate Abele
 
Php unit the-mostunknownparts
Php unit the-mostunknownpartsPhp unit the-mostunknownparts
Php unit the-mostunknownpartsBastian Feder
 
MDSD for iPhone and Android
MDSD for iPhone and AndroidMDSD for iPhone and Android
MDSD for iPhone and AndroidHeiko Behrens
 
Michael Colon Portfolio
Michael Colon PortfolioMichael Colon Portfolio
Michael Colon Portfoliomichael_colon
 

Tendances (19)

A Tour to MySQL Commands
A Tour to MySQL CommandsA Tour to MySQL Commands
A Tour to MySQL Commands
 
Sqlite perl
Sqlite perlSqlite perl
Sqlite perl
 
Sequel
SequelSequel
Sequel
 
supporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tablesupporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered table
 
Digital Mayflower - Data Pilgrimage with the Drupal Migrate Module
Digital Mayflower - Data Pilgrimage with the Drupal Migrate ModuleDigital Mayflower - Data Pilgrimage with the Drupal Migrate Module
Digital Mayflower - Data Pilgrimage with the Drupal Migrate Module
 
dcs plus Catalogue 2015
dcs plus Catalogue 2015dcs plus Catalogue 2015
dcs plus Catalogue 2015
 
Patterns for slick database applications
Patterns for slick database applicationsPatterns for slick database applications
Patterns for slick database applications
 
Advanced Querying with CakePHP 3
Advanced Querying with CakePHP 3Advanced Querying with CakePHP 3
Advanced Querying with CakePHP 3
 
Lithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate FrameworksLithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate Frameworks
 
The Origin of Lithium
The Origin of LithiumThe Origin of Lithium
The Origin of Lithium
 
Neatly folding-a-tree
Neatly folding-a-treeNeatly folding-a-tree
Neatly folding-a-tree
 
Store and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and CassandraStore and Process Big Data with Hadoop and Cassandra
Store and Process Big Data with Hadoop and Cassandra
 
EclipseCon2011 Cross-Platform Mobile Development with Eclipse
EclipseCon2011 Cross-Platform Mobile Development with EclipseEclipseCon2011 Cross-Platform Mobile Development with Eclipse
EclipseCon2011 Cross-Platform Mobile Development with Eclipse
 
beyond tellerrand: Mobile Apps with JavaScript – There's More Than Web
beyond tellerrand: Mobile Apps with JavaScript – There's More Than Webbeyond tellerrand: Mobile Apps with JavaScript – There's More Than Web
beyond tellerrand: Mobile Apps with JavaScript – There's More Than Web
 
Appendix A Tables
Appendix A   TablesAppendix A   Tables
Appendix A Tables
 
The State of Lithium
The State of LithiumThe State of Lithium
The State of Lithium
 
Php unit the-mostunknownparts
Php unit the-mostunknownpartsPhp unit the-mostunknownparts
Php unit the-mostunknownparts
 
MDSD for iPhone and Android
MDSD for iPhone and AndroidMDSD for iPhone and Android
MDSD for iPhone and Android
 
Michael Colon Portfolio
Michael Colon PortfolioMichael Colon Portfolio
Michael Colon Portfolio
 

En vedette

How to think like a startup
How to think like a startupHow to think like a startup
How to think like a startupLoic Le Meur
 
Teaching Students with Emojis, Emoticons, & Textspeak
Teaching Students with Emojis, Emoticons, & TextspeakTeaching Students with Emojis, Emoticons, & Textspeak
Teaching Students with Emojis, Emoticons, & TextspeakShelly Sanchez Terrell
 
Hype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerHype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerLuminary Labs
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsLinkedIn
 

En vedette (6)

Ilustrações
IlustraçõesIlustrações
Ilustrações
 
Inaugural Addresses
Inaugural AddressesInaugural Addresses
Inaugural Addresses
 
How to think like a startup
How to think like a startupHow to think like a startup
How to think like a startup
 
Teaching Students with Emojis, Emoticons, & Textspeak
Teaching Students with Emojis, Emoticons, & TextspeakTeaching Students with Emojis, Emoticons, & Textspeak
Teaching Students with Emojis, Emoticons, & Textspeak
 
Hype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerHype vs. Reality: The AI Explainer
Hype vs. Reality: The AI Explainer
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving Cars
 

Similaire à Student information system

pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfHiroshi Ono
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfHiroshi Ono
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfHiroshi Ono
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfHiroshi Ono
 
Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivityMouli Chandira
 
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2KZepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2KThomas Fuchs
 
Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)Leonardo Soto
 
Creat Shape classes from scratch DETAILS You will create 3 shape cla.pdf
Creat Shape classes from scratch DETAILS You will create 3 shape cla.pdfCreat Shape classes from scratch DETAILS You will create 3 shape cla.pdf
Creat Shape classes from scratch DETAILS You will create 3 shape cla.pdfaromanets
 
Deeply Declarative Data Pipelines
Deeply Declarative Data PipelinesDeeply Declarative Data Pipelines
Deeply Declarative Data PipelinesHostedbyConfluent
 
Kotlin Advanced - Apalon Kotlin Sprint Part 3
Kotlin Advanced - Apalon Kotlin Sprint Part 3Kotlin Advanced - Apalon Kotlin Sprint Part 3
Kotlin Advanced - Apalon Kotlin Sprint Part 3Kirill Rozov
 
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVERINSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVERDarwin Durand
 
Let's talk about NoSQL Standard
Let's talk about NoSQL StandardLet's talk about NoSQL Standard
Let's talk about NoSQL StandardOtávio Santana
 
Let's talk about NoSQL Standard
Let's talk about NoSQL StandardLet's talk about NoSQL Standard
Let's talk about NoSQL StandardOtavio Santana
 
ADO.NET Entity Framework by Jose A. Blakeley and Michael Pizzo
ADO.NET Entity Framework by Jose A. Blakeley and Michael PizzoADO.NET Entity Framework by Jose A. Blakeley and Michael Pizzo
ADO.NET Entity Framework by Jose A. Blakeley and Michael PizzoHasnain Iqbal
 
Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...
Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...
Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...Chris Adamson
 
Pragmatic Real-World Scala (short version)
Pragmatic Real-World Scala (short version)Pragmatic Real-World Scala (short version)
Pragmatic Real-World Scala (short version)Jonas Bonér
 
Pragmatic Real-World Scala
Pragmatic Real-World ScalaPragmatic Real-World Scala
Pragmatic Real-World Scalaparag978978
 
The Ring programming language version 1.5.3 book - Part 44 of 184
The Ring programming language version 1.5.3 book - Part 44 of 184The Ring programming language version 1.5.3 book - Part 44 of 184
The Ring programming language version 1.5.3 book - Part 44 of 184Mahmoud Samir Fayed
 

Similaire à Student information system (20)

What's New In C# 7
What's New In C# 7What's New In C# 7
What's New In C# 7
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
 
DataMapper
DataMapperDataMapper
DataMapper
 
Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivity
 
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2KZepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
 
Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)Jython: Python para la plataforma Java (EL2009)
Jython: Python para la plataforma Java (EL2009)
 
Creat Shape classes from scratch DETAILS You will create 3 shape cla.pdf
Creat Shape classes from scratch DETAILS You will create 3 shape cla.pdfCreat Shape classes from scratch DETAILS You will create 3 shape cla.pdf
Creat Shape classes from scratch DETAILS You will create 3 shape cla.pdf
 
Deeply Declarative Data Pipelines
Deeply Declarative Data PipelinesDeeply Declarative Data Pipelines
Deeply Declarative Data Pipelines
 
Kotlin Advanced - Apalon Kotlin Sprint Part 3
Kotlin Advanced - Apalon Kotlin Sprint Part 3Kotlin Advanced - Apalon Kotlin Sprint Part 3
Kotlin Advanced - Apalon Kotlin Sprint Part 3
 
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVERINSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
INSERCION DE REGISTROS DESDE VISUAL.NET A UNA BD DE SQL SERVER
 
Let's talk about NoSQL Standard
Let's talk about NoSQL StandardLet's talk about NoSQL Standard
Let's talk about NoSQL Standard
 
Let's talk about NoSQL Standard
Let's talk about NoSQL StandardLet's talk about NoSQL Standard
Let's talk about NoSQL Standard
 
ADO.NET Entity Framework by Jose A. Blakeley and Michael Pizzo
ADO.NET Entity Framework by Jose A. Blakeley and Michael PizzoADO.NET Entity Framework by Jose A. Blakeley and Michael Pizzo
ADO.NET Entity Framework by Jose A. Blakeley and Michael Pizzo
 
Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...
Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...
Revenge of the 80s: Cut/Copy/Paste, Undo/Redo, and More Big Hits (CocoaConf C...
 
Pragmatic Real-World Scala (short version)
Pragmatic Real-World Scala (short version)Pragmatic Real-World Scala (short version)
Pragmatic Real-World Scala (short version)
 
Pragmatic Real-World Scala
Pragmatic Real-World ScalaPragmatic Real-World Scala
Pragmatic Real-World Scala
 
The Ring programming language version 1.5.3 book - Part 44 of 184
The Ring programming language version 1.5.3 book - Part 44 of 184The Ring programming language version 1.5.3 book - Part 44 of 184
The Ring programming language version 1.5.3 book - Part 44 of 184
 

Dernier

Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxleah joy valeriano
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 

Dernier (20)

Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 

Student information system

  • 1. Student Information System Imports System Imports System.Data Imports System.Runtime.Serialization Imports System.Xml <Serializable(), _ System.ComponentModel.DesignerCategoryAttribute("code"), _ System.Diagnostics.DebuggerStepThrough(), _ System.ComponentModel.ToolboxItem(true)> _ Public Class DataSet1 Inherits DataSet Private tableDEPARTINGFLIGHTS As DEPARTINGFLIGHTSDataTable Public Sub New() MyBase.New Me.InitClass Dim schemaChangedHandler As System.ComponentModel.CollectionChangeEventHandler = AddressOf Me.SchemaChanged AddHandler Me.Tables.CollectionChanged, schemaChangedHandler AddHandler Me.Relations.CollectionChanged, schemaChangedHandler End Sub Protected Sub New(ByVal info As SerializationInfo, ByVal context As StreamingContext) MyBase.New Dim strSchema As String = CType(info.GetValue("XmlSchema", GetType(System.String) ),String) If (Not (strSchema) Is Nothing) Then Dim ds As DataSet = New DataSet ds.ReadXmlSchema(New XmlTextReader(New System.IO.StringReader(strSchema))) If (Not (ds.Tables("DEPARTINGFLIGHTS")) Is Nothing) Then
  • 2. Me.Tables.Add(New DEPARTINGFLIGHTSDataTable(ds.Tables("DEPARTINGFLIGHTS"))) End If Me.DataSetName = ds.DataSetName Me.Prefix = ds.Prefix Me.Namespace = ds.Namespace Me.Locale = ds.Locale Me.CaseSensitive = ds.CaseSensitive Me.EnforceConstraints = ds.EnforceConstraints Me.Merge(ds, false, System.Data.MissingSchemaAction.Add) Me.InitVars Else Me.InitClass End If Me.GetSerializationData(info, context) Dim schemaChangedHandler As System.ComponentModel.CollectionChangeEventHandler = AddressOf Me.SchemaChanged AddHandler Me.Tables.CollectionChanged, schemaChangedHandler AddHandler Me.Relations.CollectionChanged, schemaChangedHandler End Sub <System.ComponentModel.Browsable(false), _ System.ComponentModel.DesignerSerializationVisibilityAttribute(System.Compon entModel.DesignerSerializationVisibility.Content)> _ Public ReadOnly Property DEPARTINGFLIGHTS As DEPARTINGFLIGHTSDataTable Get Return Me.tableDEPARTINGFLIGHTS End Get End Property Public Overrides Function Clone() As DataSet Dim cln As DataSet1 = CType(MyBase.Clone,DataSet1) cln.InitVars Return cln End Function
  • 3. Protected Overrides Function ShouldSerializeTables() As Boolean Return false End Function Protected Overrides Function ShouldSerializeRelations() As Boolean Return false End Function Protected Overrides Sub ReadXmlSerializable(ByVal reader As XmlReader) Me.Reset Dim ds As DataSet = New DataSet ds.ReadXml(reader) If (Not (ds.Tables("DEPARTINGFLIGHTS")) Is Nothing) Then Me.Tables.Add(New DEPARTINGFLIGHTSDataTable(ds.Tables("DEPARTINGFLIGHTS"))) End If Me.DataSetName = ds.DataSetName Me.Prefix = ds.Prefix Me.Namespace = ds.Namespace Me.Locale = ds.Locale Me.CaseSensitive = ds.CaseSensitive Me.EnforceConstraints = ds.EnforceConstraints Me.Merge(ds, false, System.Data.MissingSchemaAction.Add) Me.InitVars End Sub Protected Overrides Function GetSchemaSerializable() As System.Xml.Schema.X mlSchema Dim stream As System.IO.MemoryStream = New System.IO.MemoryStream Me.WriteXmlSchema(New XmlTextWriter(stream, Nothing)) stream.Position = 0 Return System.Xml.Schema.XmlSchema.Read(New XmlTextReader(stream), Nothing) End Function Friend Sub InitVars()
  • 4. Me.tableDEPARTINGFLIGHTS = CType(Me.Tables("DEPARTINGFLIGHTS"),DEPARTINGFLIGH TSDataTable) If (Not (Me.tableDEPARTINGFLIGHTS) Is Nothing) Then Me.tableDEPARTINGFLIGHTS.InitVars End If End Sub Private Sub InitClass() Me.DataSetName = "DataSet1" Me.Prefix = "" Me.Namespace = "http://www.tempuri.org/DataSet1.xsd" Me.Locale = New System.Globalization.CultureInfo("en-US") Me.CaseSensitive = false Me.EnforceConstraints = true Me.tableDEPARTINGFLIGHTS = New DEPARTINGFLIGHTSDataTable Me.Tables.Add(Me.tableDEPARTINGFLIGHTS) End Sub Private Function ShouldSerializeDEPARTINGFLIGHTS() As Boolean Return false End Function Private Sub SchemaChanged(ByVal sender As Object, ByVal e As System.ComponentModel.CollectionChangeEventArgs) If (e.Action = System.ComponentModel.CollectionChangeAction.Remove) Then Me.InitVars End If End Sub Public Delegate Sub DEPARTINGFLIGHTSRowChangeEventHandler(ByVal sender As Object, ByVal e As DEPARTINGFLIGHTSRowChangeEvent) <System.Diagnostics.DebuggerStepThrough()> _ Public Class DEPARTINGFLIGHTSDataTable Inherits DataTable Implements System.Collections.IEnumerable
  • 5. Private columnFLIGHTNO As DataColumn Private columnORIGIN As DataColumn Private columnDEPTIME As DataColumn Private columnDESTINATION As DataColumn Private columnARRTIME As DataColumn Private columnVIA As DataColumn Private columnDAYS As DataColumn Friend Sub New() MyBase.New("DEPARTINGFLIGHTS") Me.InitClass End Sub Friend Sub New(ByVal table As DataTable) MyBase.New(table.TableName) If (table.CaseSensitive <> table.DataSet.CaseSensitive) Then Me.CaseSensitive = table.CaseSensitive End If If (table.Locale.ToString <> table.DataSet.Locale.ToString) Then Me.Locale = table.Locale End If If (table.Namespace <> table.DataSet.Namespace) Then Me.Namespace = table.Namespace End If Me.Prefix = table.Prefix Me.MinimumCapacity = table.MinimumCapacity Me.DisplayExpression = table.DisplayExpression End Sub <System.ComponentModel.Browsable(false)> _
  • 6. Public ReadOnly Property Count As Integer Get Return Me.Rows.Count End Get End Property Friend ReadOnly Property FLIGHTNOColumn As DataColumn Get Return Me.columnFLIGHTNO End Get End Property Friend ReadOnly Property ORIGINColumn As DataColumn Get Return Me.columnORIGIN End Get End Property Friend ReadOnly Property DEPTIMEColumn As DataColumn Get Return Me.columnDEPTIME End Get End Property Friend ReadOnly Property DESTINATIONColumn As DataColumn Get Return Me.columnDESTINATION End Get End Property Friend ReadOnly Property ARRTIMEColumn As DataColumn Get Return Me.columnARRTIME End Get End Property Friend ReadOnly Property VIAColumn As DataColumn Get
  • 7. Return Me.columnVIA End Get End Property Friend ReadOnly Property DAYSColumn As DataColumn Get Return Me.columnDAYS End Get End Property Public Default ReadOnly Property Item(ByVal index As Integer) As DEPARTINGFLIGHTSRow Get Return CType(Me.Rows(index),DEPARTINGFLIGHTSRow) End Get End Property Public Event DEPARTINGFLIGHTSRowChanged As DEPARTINGFLIGHTSRowChangeEventHandler Public Event DEPARTINGFLIGHTSRowChanging As DEPARTINGFLIGHTSRowChangeEventHandler Public Event DEPARTINGFLIGHTSRowDeleted As DEPARTINGFLIGHTSRowChangeEventHandler Public Event DEPARTINGFLIGHTSRowDeleting As DEPARTINGFLIGHTSRowChangeEventHandler Public Overloads Sub AddDEPARTINGFLIGHTSRow(ByVal row As DEPARTINGFLIGHTSRow) Me.Rows.Add(row) End Sub Public Overloads Function AddDEPARTINGFLIGHTSRow(ByVal FLIGHTNO As String, ByVal ORIGIN As String, ByVal DEPTIME As String, ByVal DESTINATION As String, ByVal ARRTIME As String, ByVal VIA As String, ByVal DAYS As String) As DEPARTINGFLIGHTSRow
  • 8. Dim rowDEPARTINGFLIGHTSRow As DEPARTINGFLIGHTSRow = CType(Me.NewRow,DEPARTINGFLIG HTSRow) rowDEPARTINGFLIGHTSRow.ItemArray = New Object() {FLIGHTNO, ORIGIN, DEPTIME, D ESTINATION, ARRTIME, VIA, DAYS} Me.Rows.Add(rowDEPARTINGFLIGHTSRow) Return rowDEPARTINGFLIGHTSRow End Function Public Function GetEnumerator() As System.Collections.IEnumerator Implements System.Collections.IEnumerable.GetEnumerator Return Me.Rows.GetEnumerator End Function Public Overrides Function Clone() As DataTable Dim cln As DEPARTINGFLIGHTSDataTable = CType(MyBase.Clone,DEPARTINGFLIGHTSDataTab le) cln.InitVars Return cln End Function Protected Overrides Function CreateInstance() As DataTable Return New DEPARTINGFLIGHTSDataTable End Function Friend Sub InitVars() Me.columnFLIGHTNO = Me.Columns("FLIGHTNO") Me.columnORIGIN = Me.Columns("ORIGIN") Me.columnDEPTIME = Me.Columns("DEPTIME") Me.columnDESTINATION = Me.Columns("DESTINATION") Me.columnARRTIME = Me.Columns("ARRTIME") Me.columnVIA = Me.Columns("VIA") Me.columnDAYS = Me.Columns("DAYS") End Sub Private Sub InitClass()
  • 9. Me.columnFLIGHTNO = New DataColumn("FLIGHTNO", GetType(System.String), Nothin g, System.Data.MappingType.Element) Me.Columns.Add(Me.columnFLIGHTNO) Me.columnORIGIN = New DataColumn("ORIGIN", GetType(System.String), Nothing, S ystem.Data.MappingType.Element) Me.Columns.Add(Me.columnORIGIN) Me.columnDEPTIME = New DataColumn("DEPTIME", GetType(System.String), Nothing, System.Data.MappingType.Element) Me.Columns.Add(Me.columnDEPTIME) Me.columnDESTINATION = New DataColumn("DESTINATION", GetType(System.String), Nothing, System.Data.MappingType.Element) Me.Columns.Add(Me.columnDESTINATION) Me.columnARRTIME = New DataColumn("ARRTIME", GetType(System.String), Nothing, System.Data.MappingType.Element) Me.Columns.Add(Me.columnARRTIME) Me.columnVIA = New DataColumn("VIA", GetType(System.String), Nothing, System. Data.MappingType.Element) Me.Columns.Add(Me.columnVIA) Me.columnDAYS = New DataColumn("DAYS", GetType(System.String), Nothing, Syste m.Data.MappingType.Element) Me.Columns.Add(Me.columnDAYS) End Sub Public Function NewDEPARTINGFLIGHTSRow() As DEPARTINGFLIGHTSRow Return CType(Me.NewRow,DEPARTINGFLIGHTSRow) End Function Protected Overrides Function NewRowFromBuilder(ByVal builder As DataRowBuilder) As DataRow Return New DEPARTINGFLIGHTSRow(builder) End Function
  • 10. Protected Overrides Function GetRowType() As System.Type Return GetType(DEPARTINGFLIGHTSRow) End Function Protected Overrides Sub OnRowChanged(ByVal e As DataRowChangeEventArgs) MyBase.OnRowChanged(e) If (Not (Me.DEPARTINGFLIGHTSRowChangedEvent) Is Nothing) Then RaiseEvent DEPARTINGFLIGHTSRowChanged(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Row ,DEPARTINGFLIGHTSRow), e.Action)) End If End Sub Protected Overrides Sub OnRowChanging(ByVal e As DataRowChangeEventArgs) MyBase.OnRowChanging(e) If (Not (Me.DEPARTINGFLIGHTSRowChangingEvent) Is Nothing) Then RaiseEvent DEPARTINGFLIGHTSRowChanging(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Ro w,DEPARTINGFLIGHTSRow), e.Action)) End If End Sub Protected Overrides Sub OnRowDeleted(ByVal e As DataRowChangeEventArgs) MyBase.OnRowDeleted(e) If (Not (Me.DEPARTINGFLIGHTSRowDeletedEvent) Is Nothing) Then RaiseEvent DEPARTINGFLIGHTSRowDeleted(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Row ,DEPARTINGFLIGHTSRow), e.Action)) End If End Sub Protected Overrides Sub OnRowDeleting(ByVal e As DataRowChangeEventArgs) MyBase.OnRowDeleting(e)
  • 11. If (Not (Me.DEPARTINGFLIGHTSRowDeletingEvent) Is Nothing) Then RaiseEvent DEPARTINGFLIGHTSRowDeleting(Me, New DEPARTINGFLIGHTSRowChangeEvent(CType(e.Ro w,DEPARTINGFLIGHTSRow), e.Action)) End If End Sub Public Sub RemoveDEPARTINGFLIGHTSRow(ByVal row As DEPARTINGFLIGHTSRow) Me.Rows.Remove(row) End Sub End Class <System.Diagnostics.DebuggerStepThrough()> _ Public Class DEPARTINGFLIGHTSRow Inherits DataRow Private tableDEPARTINGFLIGHTS As DEPARTINGFLIGHTSDataTable Friend Sub New(ByVal rb As DataRowBuilder) MyBase.New(rb) Me.tableDEPARTINGFLIGHTS = CType(Me.Table,DEPARTINGFLIGHTSDataTable) End Sub Public Property FLIGHTNO As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn),String) Catch e As InvalidCastException Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn) = value End Set
  • 12. End Property Public Property ORIGIN As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.ORIGINColumn),String) Catch e As InvalidCastException Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.ORIGINColumn) = value End Set End Property Public Property DEPTIME As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn),String) Catch e As InvalidCastException Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn) = value End Set End Property Public Property DESTINATION As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn),String) Catch e As InvalidCastException
  • 13. Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn) = value End Set End Property Public Property ARRTIME As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn),String) Catch e As InvalidCastException Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn) = value End Set End Property Public Property VIA As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.VIAColumn),String) Catch e As InvalidCastException Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.VIAColumn) = value End Set End Property
  • 14. Public Property DAYS As String Get Try Return CType(Me(Me.tableDEPARTINGFLIGHTS.DAYSColumn),String) Catch e As InvalidCastException Throw New StrongTypingException("Cannot get value because it is DBNull.", e) End Try End Get Set Me(Me.tableDEPARTINGFLIGHTS.DAYSColumn) = value End Set End Property Public Function IsFLIGHTNONull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn) End Function Public Sub SetFLIGHTNONull() Me(Me.tableDEPARTINGFLIGHTS.FLIGHTNOColumn) = System.Convert.DBNull End Sub Public Function IsORIGINNull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.ORIGINColumn) End Function Public Sub SetORIGINNull() Me(Me.tableDEPARTINGFLIGHTS.ORIGINColumn) = System.Convert.DBNull End Sub Public Function IsDEPTIMENull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn) End Function Public Sub SetDEPTIMENull()
  • 15. Me(Me.tableDEPARTINGFLIGHTS.DEPTIMEColumn) = System.Convert.DBNull End Sub Public Function IsDESTINATIONNull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn) End Function Public Sub SetDESTINATIONNull() Me(Me.tableDEPARTINGFLIGHTS.DESTINATIONColumn) = System.Convert.DBNull End Sub Public Function IsARRTIMENull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn) End Function Public Sub SetARRTIMENull() Me(Me.tableDEPARTINGFLIGHTS.ARRTIMEColumn) = System.Convert.DBNull End Sub Public Function IsVIANull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.VIAColumn) End Function Public Sub SetVIANull() Me(Me.tableDEPARTINGFLIGHTS.VIAColumn) = System.Convert.DBNull End Sub Public Function IsDAYSNull() As Boolean Return Me.IsNull(Me.tableDEPARTINGFLIGHTS.DAYSColumn) End Function Public Sub SetDAYSNull() Me(Me.tableDEPARTINGFLIGHTS.DAYSColumn) = System.Convert.DBNull End Sub End Class
  • 16. <System.Diagnostics.DebuggerStepThrough()> _ Public Class DEPARTINGFLIGHTSRowChangeEvent Inherits EventArgs Private eventRow As DEPARTINGFLIGHTSRow Private eventAction As DataRowAction Public Sub New(ByVal row As DEPARTINGFLIGHTSRow, ByVal action As DataRowAction) MyBase.New Me.eventRow = row Me.eventAction = action End Sub Public ReadOnly Property Row As DEPARTINGFLIGHTSRow Get Return Me.eventRow End Get End Property Public ReadOnly Property Action As DataRowAction Get Return Me.eventAction End Get End Property End Class End Class