Revision
164 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 09:53:12 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 163
frmConfigMode has been disabled
To enable: set compiler directive HAVE_FRMCONFIGMODE
in Build->Conditional compilation symbols
Revision
134 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 15 05:13:20 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 133
+ fix errors in database
+ logon to 'master' database and refer to our database is sql statments
+ remove empty GO statements from end of .sql files
Revision
125 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 14 11:44:52 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 124
+ remove reference to Sql Server SMO components
+ attempt to fix .sql script parsing to split on GO statements
Revision
124 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 14 11:14:54 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 123
if (!ClientRunScript(strFile, out ErrorInfo))
{
if (ErrorInfo != null)
throw ErrorInfo;
return false;
}
Revision
85 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 21:10:26 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 84
+ add support for database access from:
* SQL Server Express
* SQL Server (not Express)
* SQL Server MDF file
Revision
84 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 20:58:17 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 83
+ add initial database support (using the base .net database classes)
in case we need to use different database classes
Revision
79 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 02:24:25 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 78
change Database Name: AnywhereTS ==> AtsDb
+ need to add user settings
- set ServerIP
- set ServerDBInstance (SQLEXPRESS or other)
- need to set other settings
* build connection strings from these user settings at RunTime
and remove the atsConnectionString user settings
Connection string types:
- SQL Server Express Database
- SQL Server Database (Enterprise, etc [not an Express version])
- SQL Server Database File (.mdf)
Revision
78 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 02:21:43 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 77
+ comment-out NDC using statments that pass-in .sql script as context (this will keep the log file(s) lean an' mean)
Revision
77 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 01:35:49 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 76
+ fix syntax error in UpdateDatabase4.sql (commas cannot come after the last item in an ALTER table statement)
Revision
76 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 01:22:58 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 75
+ automatically replace the hardcoded database name AnyhwereTS with ATSGlobals.strDatabaseName when accessing SQLServerResources class
Revision
72 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 12 21:23:35 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 71
atsDataSet.Designer.cs:
ConnectionString = global::AnywhereTS.Properties.Settings.Default.atsConnectionString.Replace("AnywhereTS", "master");
Revision
71 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 12 21:04:56 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 70
+ add support to push Context Message Back onto the original stack (ie to preserve the stack, after we have peeked and popped all of the context messages)
Revision
51 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 12 16:21:35 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 50
fix an issue that was resolved by connecting to master database instead of AnywhereTS database
Revision
22 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 11 20:13:17 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 21
+ finish support for creating tables in an empty database (incase the database are pre-created, but contains no tables)
- still have AD login issues when creating the database from scratch (ie. it did not exist to begin with)
Revision
10 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 11 16:01:40 2012 UTC
(11 years, 2 months ago)
by
william
Diff to
previous 9
SetupDatabase():
sqlCon.ConnectionString = Properties.Settings.Default.atsConnectionString;
+ this enables the user to set the connection string
(they could use SQLEXPRESS or a full Server install with named instances)
Data Source=.\SQLEXPRESS
-or-
Data Source=IPADDRES\INSTANCENAME