通过 ODBC 连接到 FileMaker 的时间很慢
我知道这是一个开放式问题,但我希望有人能提供一些提高 FileMaker ODBC 性能的技巧...
情况: VB.NET 应用程序与在 Windows 2008 上运行的 FileMaker Pro Server 11 进行对话服务器。
代码:
Dim cn2 As New Odbc.OdbcConnection("DRIVER={FileMaker ODBC};SERVER=192.168.1.5;UID=xxx;PWD=xxx;DATABASE=xxx;")
cn2.Open() 'takes 0.37 seconds (way too slow)?!
为了进行比较,第一次打开到另一台计算机上的 MSSQL Server 的连接需要 0.01 秒,此后的任何时间都需要 0 秒。
有什么想法吗?这对于 FileMaker 来说正常吗?
I know this is an open-ended quesiton, but I was hoping someone might have some tips to improve FileMaker ODBC performance...
Situation: VB.NET application talks to FileMaker Pro Server 11 running on Windows 2008 Server.
Code:
Dim cn2 As New Odbc.OdbcConnection("DRIVER={FileMaker ODBC};SERVER=192.168.1.5;UID=xxx;PWD=xxx;DATABASE=xxx;")
cn2.Open() 'takes 0.37 seconds (way too slow)?!
For comparison, opening a connection to a MSSQL Server on a different machine takes 0.01 seconds the first time, and 0 seconds any time after that.
Any thoughts? Is this normal for FileMaker?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 FileMaker ODBC,最好使用单独的 ODBC 数据库文件进行访问 - 它仍然可以引用外部表等,但仅在文件中保留您需要的表。这应该会大大提高性能。
For FileMaker ODBC, it's best to use a separate database file for ODBC for access - it can still reference external tables, etc. but keep only the tables you need in the file. This should greatly improve performance.