Справочник функций

Ваш аккаунт

Войти через: 
Забыли пароль?
Регистрация
Информацию о новых материалах можно получать и без регистрации:

Почтовая рассылка

Подписчиков: -1
Последний выпуск: 19.06.2015

Связывание таблиц в Access

5.9K
22 марта 2004 года
Середнячок
12 / / 15.03.2004
Как сделать связывание таблиц програмным путём
:???:
266
22 марта 2004 года
mhaturov
901 / / 23.10.2003
Цитата:
Originally posted by Середнячок
Как сделать связывание таблиц програмным путём
:???:


Вот пример создания и связывания таблицы в SQL. В Jet, думаю, синтаксис не будет сильно отличаться.
К сожалению, подробнее сейчас писать некогда, но, надеюсь, разберёшься:

Код:
IF NOT exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GridAnsvers]') and OBJECTPROPERTY(id, N'IsTable') = 1)
 BEGIN
   BEGIN TRANSACTION
      CREATE TABLE dbo.GridAnsvers
  (
  IDGridAns int NOT NULL IDENTITY (1, 1),
  CQId int NOT NULL,
  AlterQID int NOT NULL,
  Ansver nvarchar(4000) NULL
  )  ON [PRIMARY]
 
      ALTER TABLE dbo.GridAnsvers ADD CONSTRAINT
  PK_GridAnsvers PRIMARY KEY CLUSTERED  
  (
  IDGridAns
  ) ON [PRIMARY]


      ALTER TABLE dbo.GridAnsvers ADD CONSTRAINT
  FK_GridAnsvers_ContryQues FOREIGN KEY
  (
  CQId
  ) REFERENCES dbo.ContryQues
  (
  QuesContrID
  )

      ALTER TABLE dbo.GridAnsvers ADD CONSTRAINT
  FK_GridAnsvers_AlterQ FOREIGN KEY
  (
  AlterQID
  ) REFERENCES dbo.AlterQ
  (
  AlterQID
  )
   COMMIT
 END

IF NOT exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AnsversGridAnsvers]') and OBJECTPROPERTY(id, N'IsTable') = 1)
 BEGIN
   BEGIN TRANSACTION
      CREATE TABLE dbo.AnsversGridAnsvers
  (
  AnsGAnsID int NOT NULL IDENTITY (1, 1),
  AnsID int NOT NULL,
  GridID int NOT NULL
  )  ON [PRIMARY]

      ALTER TABLE dbo.AnsversGridAnsvers ADD CONSTRAINT
  PK_AnsversGridAnsvers PRIMARY KEY CLUSTERED  
  (
  AnsGAnsID
  ) ON [PRIMARY]

 
      ALTER TABLE dbo.AnsversGridAnsvers ADD CONSTRAINT
  FK_AnsversGridAnsvers_Answers FOREIGN KEY
  (
  AnsID
  ) REFERENCES dbo.Answers
  (
  AnsID
  )

      ALTER TABLE dbo.AnsversGridAnsvers ADD CONSTRAINT
  FK_AnsversGridAnsvers_GridAnsvers FOREIGN KEY
  (
  GridID
  ) REFERENCES dbo.GridAnsvers
  (
  IDGridAns
  )

   COMMIT
 END
258
22 марта 2004 года
SergeySV
1.5K / / 19.03.2003
Связь - в DAO это объект Relation из коллекции Relations

Код:
CreateRelation Method Example

This example uses the CreateRelation method to create a Relation between the Employees TableDef and a new TableDef called Departments. This example also demonstrates how creating a new Relation will also create any necessary Indexes in the foreign table (the DepartmentsEmployees Index in the Employees table).

Sub CreateRelationX()

    Dim dbsNorthwind As Database
    Dim tdfEmployees As TableDef
    Dim tdfNew As TableDef
    Dim idxNew As Index
    Dim relNew As Relation
    Dim idxLoop As Index

    Set dbsNorthwind = OpenDatabase("Northwind.mdb")

    With dbsNorthwind
        ' Add new field to Employees table.
        Set tdfEmployees = .TableDefs!Employees
        tdfEmployees.Fields.Append _
            tdfEmployees.CreateField("DeptID", dbInteger, 2)

        ' Create new Departments table.
        Set tdfNew = .CreateTableDef("Departments")

        With tdfNew
            ' Create and append Field objects to Fields
            ' collection of the new TableDef object.
            .Fields.Append .CreateField("DeptID", dbInteger, 2)
            .Fields.Append .CreateField("DeptName", dbText, 20)

            ' Create Index object for Departments table.
            Set idxNew = .CreateIndex("DeptIDIndex")
            ' Create and append Field object to Fields
            ' collection of the new Index object.
            idxNew.Fields.Append idxNew.CreateField("DeptID")
            ' The index in the primary table must be Unique in
            ' order to be part of a Relation.
            idxNew.Unique = True
            .Indexes.Append idxNew
        End With

        .TableDefs.Append tdfNew

        ' Create EmployeesDepartments Relation object, using
        ' the names of the two tables in the relation.
        Set relNew = .CreateRelation("EmployeesDepartments", _
            tdfNew.Name, tdfEmployees.Name, _
            dbRelationUpdateCascade)

        ' Create Field object for the Fields collection of the
        ' new Relation object. Set the Name and ForeignName
        ' properties based on the fields to be used for the
        ' relation.
        relNew.Fields.Append relNew.CreateField("DeptID")
        relNew.Fields!DeptID.ForeignName = "DeptID"
        .Relations.Append relNew

        ' Print report.
        Debug.Print "Properties of " & relNew.Name & _
            " Relation"
        Debug.Print "  Table = " & relNew.Table
        Debug.Print "  ForeignTable = " & _
            relNew.ForeignTable
        Debug.Print "Fields of " & relNew.Name & " Relation"

        With relNew.Fields!DeptID
            Debug.Print "  " & .Name
            Debug.Print "    Name = " & .Name
            Debug.Print "    ForeignName = " & .ForeignName
        End With

        Debug.Print "Indexes in " & tdfEmployees.Name & _
            " TableDef"
        For Each idxLoop In tdfEmployees.Indexes
            Debug.Print "  " & idxLoop.Name & _
                ", Foreign = " & idxLoop.Foreign
        Next idxLoop

        ' Delete new objects because this is a demonstration.
        .Relations.Delete relNew.Name
        .TableDefs.Delete tdfNew.Name
        tdfEmployees.Fields.Delete "DeptID"
        .Close
    End With

End Sub
Реклама на сайте | Обмен ссылками | Ссылки | Экспорт (RSS) | Контакты
Добавить статью | Добавить исходник | Добавить хостинг-провайдера | Добавить сайт в каталог