31-01-20 05:43 PM
Answered! Go to Answer.
03-02-20 06:57 AM
03-02-20 06:57 AM
04-02-20 02:27 PM
11-02-20 03:03 PM
string connectionString = "driver=" + driver + ";" + "uid=" + uid + ";" + "pwd=" + pwd + ";" + "authenticator=" + authenticator + ";" + "server=" + server + ";" + "schema=" + schema + "; + "query_timeout=60;+network_timeout=60;"; OdbcConnection connection = new OdbcConnection(connectionString); errorMessage = ""; result = new DataTable(); success = false; try { connection.Open(); OdbcCommand command = new OdbcCommand(sqlCommand, connection); OdbcDataReader dataReader = command.ExecuteReader(); result.Load(dataReader); success = true; } catch (Exception ex) { errorMessage = ex.Message; } finally { connection.Close(); }
11-02-20 03:10 PM
11-03-20 10:29 AM
15-03-20 04:04 AM
20-04-20 03:17 PM
11-06-21 07:03 AM
ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified"
In the VBO pre-requsities its been mentioned that 32 bit driver is required, but we are using 64bit VM. Will it be an issue? Please suggest.
If yes, what could be the alternate way to connect snowflake with blueprim.
Please help.
Thanks,
Sathish R
01-02-23 11:26 AM