We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
操作系统为win10 64位 企业版,tdengine server和client版本都是3.0.7.1,使用connector版本为3.1.3,在.netcore3.1和.net6.0下运行以下代码均正常;换到.netframework4.8下运行就报错,提示找不到taos DLL。 System.DllNotFoundException:“无法加载 DLL“taos”: 找不到指定的模块。 (异常来自 HRESULT:0x8007007E)。” try { var conStr = $"host=localhost;port=6030;username=root;password=taosdata"; var builder = new ConnectionStringBuilder(conStr); using (var client = DbDriver.Open(builder)) { MessageBox.Show("connected"); } } catch { MessageBox.Show("failed"); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
操作系统为win10 64位 企业版,tdengine server和client版本都是3.0.7.1,使用connector版本为3.1.3,在.netcore3.1和.net6.0下运行以下代码均正常;换到.netframework4.8下运行就报错,提示找不到taos DLL。 System.DllNotFoundException:“无法加载 DLL“taos”: 找不到指定的模块。 (异常来自 HRESULT:0x8007007E)。”
![8b685cebd7f5704be7ead9587429202](https://private-user-images.githubusercontent.com/54664995/371429171-d9196545-eade-4bf0-9f7e-09e1a246a480.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxOTAyNjAsIm5iZiI6MTczOTE4OTk2MCwicGF0aCI6Ii81NDY2NDk5NS8zNzE0MjkxNzEtZDkxOTY1NDUtZWFkZS00YmYwLTlmN2UtMDllMWEyNDZhNDgwLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTAlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEwVDEyMTkyMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPThlYmU1YWVjYzlmNzAxZjk0MmNhZTNhYTUxZWUzNjA3MWExY2I4YzU1NTVlMGY1OWYzOGQzMmU1ODI0MzJhYzUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.MURLd7I93Kb1YS1ze3zttH44SJVDyWi-d1LCm_Z0YRE)
try
{
var conStr = $"host=localhost;port=6030;username=root;password=taosdata";
var builder = new ConnectionStringBuilder(conStr);
using (var client = DbDriver.Open(builder))
{
MessageBox.Show("connected");
}
}
catch { MessageBox.Show("failed"); }
The text was updated successfully, but these errors were encountered: