でシノニムを作成するにはどうすればよいHyperFileSQL
ですか?
という名前のテーブルがUSER
あり、経由でアクセスできませんODBC
。名前を変更できないので、シノニムを作成したいと思います。どうすればいいですか?
でシノニムを作成するにはどうすればよいHyperFileSQL
ですか?
という名前のテーブルがUSER
あり、経由でアクセスできませんODBC
。名前を変更できないので、シノニムを作成したいと思います。どうすればいいですか?
シノニムを作成するには、この関数を使用しますHAlias()
。
// Create an alias for the ORDERS file
// (Syntax available from version 19)
Orders2013 is Data Source <description=Orders>
IF HAlias(Orders, Orders2013) = True THEN
// ORDERS2013 can now be used in the processes
// It behaves the same way as
// the ORDERS file described in the analysis.
// Modify the directory
HChangeDir(Orders2013, "D:\SalesMgt\Archive2013")
// Modify the name
HChangeName(Orders2013, "Orders")
HOpen(Orders2013)
...
// Processes on the Orders2013 file
...
END
// Cancel the alias
HCancelAlias(Orders)