在載入 ExtJS 這種大型 JS 框架時,如果 Client 端網路速度不夠快,在首次載入時會空白畫面等很久,為了讓用戶端有更好的體驗,所以還是要有個進度條來刷個存在感,如此一來用戶也比較願意在自己的網站停留比較久的時間。
以下是程式碼範例:
2017/12/25
2017/12/08
How to set dbExpress ODBC ConnectionString property and TLS support
New ODBC driver for dbExpress in XE2.
You can setting DSN in Data Source (ODBC).
If you want create DSN-less connection, you can to setup ConnectionString in TSQLConnection.params.
The connection string like below:
MS Access
VendorLib=odbcjt32.dll;DRIVER={Microsoft Access Driver (*.mdb)};DBQ=Your.mdb;DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=17;coSafeMode=1
=== 2021/10/25 update ====
SQL SERVER
Standard Security with OleDB
ConnectionString=DRIVER={SQL Server};SERVER=HOST_NAME;DATABASE=DB_NAME;UID=USER_NAME;PWD=PASSWORD;
Standard Security with OleDB and Enable MARS
ConnectionString=DRIVER={SQL Server};SERVER=HOST_NAME;DATABASE=DB_NAME;UID=USER_NAME;PWD=PASSWORD;MultipleActiveResultSets=True
Standard Security with SQL Server Native Client 10
ConnectionString=DRIVER={SQL Server Native Client 10.0};SERVER=HOST_NAME;DATABASE=DB_NAME;UID=USER_NAME;PWD=PASSWORD;
Standard Security with SQL Server Native Client 11
ConnectionString=DRIVER={SQL Server Native Client 11.0};SERVER=HOST_NAME;DATABASE=DB_NAME;UID=USER_NAME;PWD=PASSWORD;
Standard Security with SQL Server Native Client 11 and Enable MARS
ConnectionString=DRIVER={SQL Server Native Client 11.0};SERVER=HOST_NAME;DATABASE=DB_NAME;UID=USER_NAME;PWD=PASSWORD;MARS_Connection=yes;
Standard Security with Azure SQL
DriverName=Odbc
IsolationLevel=ReadCommitted
RowSetSize=20
ConnectionString=DRIVER={SQL Server};SERVER=SERVERNAME.database.windows.net;DATABASE=DB_NAME;UID=USER_NAME;PWD=PASSWORD;
MSSQL driver for dbExpress support TLS protocol with SQL SERVER 2008 and 2008 R2
SQL Server 2008
- Install and update to 2008 SP4
- Install KB4057114
SQL Server 2008 R2
- Install and update to 2008 R2 SP3
- Install KB4057113
上述步驟可以賦予 SQL Server 2008/2008 R2 以及「sqlncli10.dll」支援 TLS 加密通訊能力,如此便能使用它連接更高版本的 SQL Server,同時也讓 MSSQL for dbExpress (dbxmss.dll) 可以繼續使用,皆大歡喜!
和你分享 😉
See also
- dbdesigner-fork: Github
- Setup an ODBC connection to a MS Access DB under Data Explorer in XE2 Enterprise that does not use a DSN
- Microsoft OLE DB Provider for SQL Server connection strings
- SQL Server Native Client 11.0 ODBC Driver connection strings
- Security Update for SQL Server 2008 SP4 (KB4057114)
- Security Update for SQL Server 2008 R2 SP3 (KB4057113)
- VB6 Application Trying to Connect to Azure SQL Database
2017/12/05
免費、可商業使用的 Delphi 和 C++ Builder Tokyo 介紹及下載教學 (CHT)
之前提到過【免費、可商業使用的 Delphi 和 C++ Builder Berlin 介紹及下載教學】
最近在 EMBT 推出 Tokyo 10.2 後,又再一次想來體驗看看。
安裝方式都差不多,就不再多重複說明,但要注意的地方是:
安裝時會發生 Operation Error 的問題,如下圖:
訂閱:
文章 (Atom)