Programmer:Simple program to test connection to AutoCount Accounting v2: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 8:
STEP 1. Create UserSession & DBSetting
STEP 2. Call (Create) SubProjectStartup
STEP 3. Login to AutoCount Accounting 2.0
 
{{SourceDownload|link=https://drive.google.com/open?id=10Au8sEjrY3UeDykSCcjx-cVqSgWQPzAS|remark=(Visual Studio 2017)|Download Sample Project|Sample project to test connection to AutoCount Accounting 2.0.}}
Line 14:
<br />
 
==UserSession and DBSetting==
'''DBSettingUserSession''' isand one'''DBSetting''' ofare the most frequentlyfrequent useduse classclasses in AutoCount Accounting 2.0, whether it is plug-in or integratingintegrate system.
Even when writing scripting for report script orand application script, you may find the object of UserSession and DBSetting isare provided.<br />
UserSession and DBSetting isare required by almost all transactions and documents when accessing to databaseAutoCount server is needed.<br />
Moreover, it provides methods such as GetDataTable(...), ExecuteScalar(...), ExecuteNonQuery(...) and more for programmer to easily access to currently connected account book.<br />
During its creation, two pieces of information is important, they are the '''server name''' and '''database name'''.
 
Namespace: BCEAutoCount.Data
 
===Create DBSetting with AutoCount default configuration===
Line 27:
Below example code shows the DBSetting is created with new operator.
<syntaxhighlight lang="csharp">
BCEAutoCount.Data.DBSetting dbSetting = new BCEAutoCount.Data.DBSetting(DBServerType.SQL2000, serverName, dbName);
</syntaxhighlight>
 
* DBServerType which is the First parameter is always DBServerType.SQL2000, regardless of which Microsoft SQL Server version is being applied.
* To obtain available '''Server Name''' and '''Database Name''':
** Programatically, you may refer to "[[Programmer:Create BCEAutoCount.Data.DBSetting with Database Info|Create BCEAutoCount.Data.DBSetting with Database Info in AutoCount Accounting 12.80]]".
** Manually, at the login screen of AutoCount Accounting.
::[[File:ProgramLoginForm.png|450px|link=]]
<br />
===Create DBSetting while specifyingspecify SQL Server sa password===
<syntaxhighlight lang="csharp">
BCEAutoCount.Data.DBSetting dbSetting = new BCEAutoCount.Data.DBSetting(DBServerType.SQL2000, serverName, "sa", "mYsApAsSwOrD", dbName);
</syntaxhighlight>
* sa login password can be omitted when the password is using AutoCount default sa login password.
Line 47 ⟶ 46:
<br />
 
<!--
==SubProjectStartupWithLogin==
*When using '''SubProjectStartupWithLogin''' it does the following tasks:
Line 135:
}
</syntaxhighlight>
-->
 
<br/>
==See Also==
*[[Programmer:Simple program to test connection to AutoCount Accounting v2|A simple program to test connection to AutoCount Accounting 2.0]]
*[[Programmer:CreateSimple BCE.Data.DBSettingprogram withto Databasetest Infoconnection to AutoCount Accounting|CreateA BCE.Data.DBSettingsimple withprogram Databaseto Infotest inconnection to AutoCount Accounting 1.8/1.9]]
*[[Programmer:Create BCE.Data.DBSetting with Database Info|Create BCE.Data.DBSetting with Database Info in AutoCount Accounting 1.8/1.9]]
*[[Invalid LCPDecryptFileException was unhandled]]
<br />