Open dpajkovic opened 5 years ago
If the query is replaced to SELECT System.ItemPathDisplay FROM SYSTEMINDEX
, does it works?
No, unfortunately the error is still the same.
Could you please try last change? https://github.com/mattn/go-adodb/commit/010be82f64e9661e64a4c0f2469d40255e19933c
I had the same issue, because I was using the latest version (Tag 0.0.1) without. The latest commit 5e535a3
does work though.
Would it be possible to add a new release version, in order be able to use the version in the go.mod file rather than the commit hash?
Hello, I'm trying to port some of my PowerShell code to Go, and I'm stumbling here when porting the interface to the search index on Windows. With PowerShell it's simply case of connecting System.Data.OleDb.OleDbCommand to provider "provider=search.collatordso;extended properties=’application=windows’;" and then running a simple SQL command like "SELECT Top 5 System.ItemPathDisplay FROM SYSTEMINDEX" (can get more complex with WHERE clauses).
I made a simple script:
and when I run it I get:
Please help with any suggestions, I'm at my wits' end.