Skip to content

Commit 117dcbe

Browse files
committed
Merge pull request #40 from dinfcll/dv_np_ReglagesServeur
ChangerBD
2 parents 7b4f719 + c3a0351 commit 117dcbe

12 files changed

+10
-10
lines changed

AbonnementUtil.sql

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE [tempdb]
1+
USE [DBPhotoFun]
22
GO
33

44
IF EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_AbonnementUtil_Utilisateurs]') AND parent_object_id = OBJECT_ID(N'[dbo].[AbonnementUtil]'))
@@ -9,15 +9,15 @@ IF EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[
99
ALTER TABLE [dbo].[AbonnementUtil] DROP CONSTRAINT [FK_AbonnementUtil_Utilisateurs1]
1010
GO
1111

12-
USE [tempdb]
12+
USE [DBPhotoFun]
1313
GO
1414

1515
/****** Object: Table [dbo].[AbonnementUtil] Script Date: 11/07/2014 14:04:22 ******/
1616
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[AbonnementUtil]') AND type in (N'U'))
1717
DROP TABLE [dbo].[AbonnementUtil]
1818
GO
1919

20-
USE [tempdb]
20+
USE [DBPhotoFun]
2121
GO
2222

2323
/****** Object: Table [dbo].[AbonnementUtil] Script Date: 11/07/2014 14:04:22 ******/

PhotoFun.suo

-1 KB
Binary file not shown.

PhotoFun/Models/PhotoFunBD.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace PhotoFun.Models
55
{
66
public class PhotoFunBd
77
{
8-
private const string Cs = "Data Source=EQUIPE-01\\SQLEXPRESS ;Initial Catalog=tempdb;Integrated Security=True";
8+
private const string Cs = "Data Source=EQUIPE-01\\SQLEXPRESS ;Initial Catalog=DBPhotoFun;Integrated Security=True";
99

1010
public string ConnexionString
1111
{
Binary file not shown.
Binary file not shown.

PhotoFun/obj/Debug/PhotoFun.dll

0 Bytes
Binary file not shown.

PhotoFun/obj/Debug/PhotoFun.pdb

6 KB
Binary file not shown.

Photos.sql

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE [tempdb]
1+
USE [DBPhotoFun]
22
GO
33

44
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[DF_Photos_NbJaime]') AND type = 'D')
@@ -8,15 +8,15 @@ END
88

99
GO
1010

11-
USE [tempdb]
11+
USE [DBPhotoFun]
1212
GO
1313

1414
/****** Object: Table [dbo].[Photos] Script Date: 11/07/2014 13:06:06 ******/
1515
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Photos]') AND type in (N'U'))
1616
DROP TABLE [dbo].[Photos]
1717
GO
1818

19-
USE [tempdb]
19+
USE [DBPhotoFun]
2020
GO
2121

2222
/****** Object: Table [dbo].[Photos] Script Date: 11/07/2014 13:06:07 ******/
Binary file not shown.
Binary file not shown.

Utilisateurs.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
USE [tempdb]
1+
USE [DBPhotoFun]
22
GO
33

44
/****** Object: Table [dbo].[Utilisateurs] Script Date: 12/01/2014 12:30:22 ******/
55
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Utilisateurs]') AND type in (N'U'))
66
DROP TABLE [dbo].[Utilisateurs]
77
GO
88

9-
USE [tempdb]
9+
USE [DBPhotoFun]
1010
GO
1111

1212
/****** Object: Table [dbo].[Utilisateurs] Script Date: 12/01/2014 12:30:22 ******/

relUtilPhoto.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE [tempdb]
1+
USE [DBPhotoFun]
22
GO
33

44
ALTER TABLE [dbo].[relUtilPhoto] DROP CONSTRAINT [FK_relUtilPhoto_Utilisateurs]

0 commit comments

Comments
 (0)