mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
e90ef57645
including: - fixes according to new API changes - closing db connection in connection_destroy callback, not unbind - support of new schema code, samples changed accordingly - support for multiple objectclasses (to distinguish from unique objectclass-to-tables mapping) - auto 'ref' attribute support - samples now include illustrations of using these 2 features to make named referrals as described in ldapext-namedref draft more to come: - documentation update - different improvements to be more close to native directory (after beta?)
40 lines
1.1 KiB
Transact-SQL
40 lines
1.1 KiB
Transact-SQL
drop procedure create_person
|
|
drop procedure set_person_name
|
|
drop procedure delete_phone
|
|
drop procedure add_phone
|
|
drop procedure make_doc_link
|
|
drop procedure del_doc_link
|
|
drop procedure delete_person
|
|
|
|
drop procedure create_org
|
|
drop procedure set_org_name
|
|
drop procedure delete_org
|
|
|
|
drop procedure create_document
|
|
drop procedure set_doc_title
|
|
drop procedure set_doc_abstract
|
|
drop procedure make_author_link
|
|
drop procedure del_author_link
|
|
drop procedure delete_document
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'authors_docs') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table authors_docs
|
|
GO
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'documents') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table documents
|
|
GO
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'institutes') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table institutes
|
|
GO
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'persons') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table persons
|
|
GO
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'phones') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table phones
|
|
GO
|
|
|