uses
Windows;
...
// Set locale ID to German phone book collation
FDTable1.FormatOptions.SortLocale := MAKELCID(MAKELANGID (LANG_GERMAN, SUBLANG_GERMAN), SORT_DEFAULT);
// Use the the punctuation and other symbols case insensitive sorting
FDTable1.FormatOptions.SortOptions := [soNoSymbols];
FDTable1.IndexFieldNames := 'NAME';
FDTable1.TableName := 'CUSTOMERS';
FDTable1.Open;
1条答案
按热度按时间gupuwyp21#
我从来没有用过LiveDataWindows为我的任何程序,但我认为,正如你上面提到的,你应该给予
FDTable
一个尝试。这里是关于如何正确地设置它在MSSSL服务器以及链接。Embarcadero docwiki
您可以使用docwiki中的代码构建一个小型试用应用程序: