Displaying 2 results from an estimated 2 matches for "dbsetluser".
2012 Apr 10
4
TinyTds::Client.new() gives an error "undefined symbol: dbsetluser"
...=> ''192.168.1.45'',
:database => ''test_db'',
:login_timeout => 5,
:timeout => 5
)
, it gives an error
"ruby: symbol lookup error:
/usr/local/lib/ruby/gems/1.8/gems/tiny_tds-0.5.1/lib/tiny_tds/tiny_tds.so:
undefined symbol: dbsetluser".
Could you please help me out to find a solution to this problem.
PS: I searched from Google, but could not find anything.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To pos...
2003 Jul 11
4
module : cdr_sybase.so
...if (application == NULL)
{
ast_log(LOG_ERROR,"Application not specified.\n");
return -1;
}
/* Initialize DB-Library. */
if (dbinit() == FAIL )
{
ast_log(LOG_ERROR,"Can not initialize DB-library.\n");
return -1;
}
login = dblogin();
DBSETLUSER(login,dbuser);
DBSETLPWD(login,password);
DBSETLAPP(login,application);
dbproc = dbopen(login,dbserver);
if (dbproc == NULL) {
ast_log(LOG_WARNING, "Failed to connect to sybase database.\n");
return -1;
} else {
ast_log(LOG_DEBUG,"Successfully connected to syb...