search for: myodbc

Displaying 20 results from an estimated 45 matches for "myodbc".

2006 Mar 31
5
installing MySQL on 4.3 OR ''am I braindead or what?''
...Packages in global exclude list Finished Passing package list to Install Process Parsing package install arguments Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Package libdbi-dbd-mysql.i386 0:0.6.5-10.RHEL4.1 set to be updated ---> Package MyODBC.i386 0:2.50.39-21.RHEL4.1 set to be updated ---> Package rsync.i386 0:2.6.7-2.el4.rf set to be updated ---> Package MySQL-python.i386 0:1.0.0-1.RHEL4.1 set to be updated ---> Package lftp.i386 0:3.4.2-1.2.el4.rf set to be updated ---> Package sendmail.i386 0:8.13.1-3.RHEL4.3 set to be u...
2002 Jun 06
4
R and mysql on debian
Hello, I have been using RODBC on Windows with version 1.41 of R successfully, connecting to a mysql database using MyODBC. Now I would like to do so with R under Debian/GNU Linux. I just tried RMySQL (install failed, since mysql libraries were not found), DBI (no MySQL driver available) and I can't find the RODBC package any more on CRAN. Any suggestions? Johannes Ranke P.S.: Thanks for all the great work to...
2002 Dec 17
3
File Locking and MS Access
How do I allow two or more users access to the same File at the same time. I've been using a Windows 98 server with a Microsoft Access 97 database. Every user on the network can access the database at the same time and read & write to it as long as they aren't using the same record. Linux and Samba won't let me do this. I'm using Linux 7.3 and Samba 2.2.7a
2017 Jun 06
2
Upgraded server crashes on voicemail storage
Hi all, I'm upgrading to Asterisk 13.14.0 x86_64. During my beta testing, I've discovered that my server crashes as soon as I leave a voicemail message. I'm using odbc voicemail storage as well as mysql dynamic configuration. I'm using unixODBC 2.3.2-r2 with myodbc 5.2.7-r1 I suspect that the odbc drivers are the problem. Is ther an alternative drive that I should be using? Failing that, any other ideas? Thanks in advance. -- Mike Diehl
2012 Jun 18
4
Asterisk 1.8.13.0 / problem with cdr logging (mysql, odbc)
...cat /etc/odbc.ini ------------------ [MySQL-asterisk] Description = MySQL ODBC Driver Driver = MySQL Socket = /var/run/mysqld/mysqld.sock Server = localhost User = xxx Password = xxx Database = asterisk Option = 3 Port = and /etc/odbcinst.ini -------------------- [MySQL] Description = MySQL ODBC MyODBC Driver Driver = /usr/lib/x86_64-linux-gnu/odbc/libmyodbc.so FileUsage = 1 When testing this setup I can see, that this basic setup ist fine: ~$ isql MySQL-asterisk asterisk qpalym -v +---------------------------------------+ | Connected! | |...
2009 Mar 16
7
WIne, Access 97 and mysql question/problem
I'm trying to get Access 97 running under wine and have it connect to a mysql server running on the linux side of the machine. I was able to get Access 97 installed and it runs good but no matter what I do I cannot get it to connect to the mysql server through the odbc connector. I've tried it with the wine odbc stub and while I can get isql to hit the database on the linux side no
2002 May 31
1
Accessing MySQL from Windows
...hen using the Install from CRAN menu at Windows to pick the RMySQL package I cannot see it on the menu.... What am I doing wrong? According to the R Data Import/Export manual "Package RMySQL has been used on both Linux and Windows." ... I'm able to get the data using RODBC and the myodbc driver, but I would prefer to have the same R code... Is this possible? Thank you. -- Luis Torgo FEP/LIACC, University of Porto Phone : (+351) 22 607 88 30 Machine Learning Group Fax : (+351) 22 600 36 54 R. Campo Alegre, 823 email : ltorgo at liacc.up....
2005 Mar 11
1
Trouble with Realtime
...SQL ODBC Driver Testing Driver = MySQL #Socket = /var/run/mysqld/mysqld.sock Server = 10.10.15.30 User = voip Password = temp123 Database = voip Option = 3 #Port = and odbcinst.ini: [MySQL] Description = MySQL ODBC MyODBC Driver Driver = /usr/lib/libmyodbc3.so FileUsage = 1 UsageCount = 2 If I've missed some relevant part of the configuration, let me know, but I think I got all of it. I'm pretty mistified at the moment, after a few hours of working on it. Thanks, Nathan
2011 Oct 19
3
Can we use MySQL native connector for ARA?
Hello Everyone, The documentation suggests using unixodbc for asterisk realtime. Is there any way we can just use native database clients such as libmysqlclient from MySQL? The native clients tend to be more up-to-date. Thanks in Advance, Nick.
2010 Jan 12
1
FW: Problems connecting with MySQL using odbcDriverConnect (RODBC package) on Linux
...rey Sent: Tuesday, January 12, 2010 6:09 PM To: 'r-help at r-project.org' Subject: Problems connecting with MySQL using odbcDriverConnect (RODBC package) on Linux I am sure I'm doing something wrong here but not sure what. Our system administrator recently installed UnixODBC and the MyODBC driver on a Linux box running Linux version 2.6 x86_64. I have an .odbc.ini file in my home directory with following lines: [mydb] Description = MySQL server on my-server Driver=/usr/lib64/libmyodbc3.so SERVER=my-server I can successfully do the following: library(RODBC) channel <- odbcConn...
2004 Jun 22
1
Problems compiling cdr_odbc.so
I'm not really being too lucky in the last days. After trying to compile cdr_mysql with no success, I am switching to cdr_odbc. I have installed unixODBC, iODBC and MyODBC correctly, I am even able to make queries with isql. But when trying to "make" in the cdr directory of the latest CVS, that's what I get: # cd /usr/src/asterisk/cdr # make cc -o cdr_odbc.so cdr_odbc.o -lodbc /usr/lib/gcc-lib/i386-redhat-linux/3.3.2/../../../crt1.o(.text+0x18)...
2004 Aug 09
2
Installing RMySQL on Windows XP for R 1.9.1
Hi, I'm thankful for any help on installing RMySQL on Windows XP for R 1.9.1 The thread http://tolstoy.newcastle.edu.au/R/help/04/01/1021.html already tried to discuss the matter. It concludes that Windows Sources for Packages are alike the Linux ones. So I extracted the files from the RMySQL_*.tar.gz from http://stat.bell-labs.com/RS-DBI/download/index.html and stuffed them into a zip-file
2006 Jun 27
3
find_by_id vs. find in postback action
I''m playing around with the Postback action recipe listed in the recipes book. Here is the default code given: def edit @recipe = Recipe.find_by_id(params[:id]) || Recipe.new if request.post? @recipe.attributes = params[:recipe] redirect_to :main_url and return if @recipe.save end end Here is what my code sort of ended up looking like, altho i''ve ripped it apart
2019 Oct 12
3
setting up ODBC for cdr logging into MariaDB
Hello, I am trying to set up cdr logging into MariaDB through ODBC. I have installed unixodbc unixodbc-dev and now I am struggling with configuring /etc/odbcinst.ini All the examples online use non-existent libraries, ie: [MySQL] Description = MySQL ODBC MyODBC Driver Driver = /usr/lib/x86_64-linux-gnu/odbc/libmaodbc.so Setup = /usr/lib/x86_64-linux-gnu/odbc/libodbcmyS.so FileUsage = 1 I have these odbc related libraries on my system. Which of those do I have to use for `Driver =` ? /usr/lib/x86_64-linux-gnu/libodbc.so /usr/lib/x86_64-linux-gnu/libo...
2017 Jun 07
2
Upgraded server crashes on voicemail storage
...grading to Asterisk 13.14.0 x86_64. During my beta testing, I've > > discovered that my server crashes as soon as I leave a voicemail message. > > I'm using odbc voicemail storage as well as mysql dynamic configuration. > > > > I'm using unixODBC 2.3.2-r2 with myodbc 5.2.7-r1 > > > > I suspect that the odbc drivers are the problem. Is ther an alternative > > drive that I should be using? > > > > Failing that, any other ideas? > > Give us more details of what you mean by "crashes". My remote console gets disconn...
2003 Nov 25
6
cdr_unixodbc
asterisk*CLI> load cdr_unixodbc.so Loaded /usr/lib/asterisk/modules/cdr_unixodbc.so => (unixODBC CDR Backend) == Parsing '/etc/asterisk/cdr_unixodbc.conf': == Parsing '/etc/asterisk/cdr_unixodbc.conf': Found -- cdr_unixodbc: dsn is MySQL-asterisk -- cdr_unixodbc: username is root -- cdr_unixodbc: password is [secret] -- Connected to MySQL-asterisk it
2005 Mar 22
0
DCOM - RODBC/RMySQL problem
...y a VB frontend. After upgrading to DCOM 1.35, the analysis has become excruciatingly slow when processing a simple RODBC query. I am using DCOM 1.35 - I didn't have this difficulty prior to upgrading. I upgraded all other associated software with no change in performance: R 2.1 MySQL 4.1.10 MyODBC 3.51.11 I then installed DBI and RMySQL. I have been working with RMySQL using emacs. When establishing a connection, Rterm crashes with the error "instruction at "0x78001d0b" referenced memory at "0x00000000" the memory could not be read." Is anyone familiar with...
2010 Jan 12
0
Problems connecting with MySQL using odbcDriverConnect (RODBC package) on Linux
I am sure I'm doing something wrong here but not sure what. Our system administrator recently installed UnixODBC and the MyODBC driver on a Linux box running Linux version 2.6 x86_64. I have an .odbc.ini file in my home directory with following lines: [mydb] Description = MySQL server on my-server Driver=/usr/lib64/libmyodbc3.so SERVER=my-server I can successfully do the following: library(RODBC) channel <- odbcConn...
2006 Jan 17
2
yum groupinstall "MySQL Database"
Hi all, I have a question related to yum groupinstall. I just tried a: yum groupinstall "MySQL Database" I expected that I would end up with a MySQL Database server, but it installed a bunch of .rpms *except* mysql-server. No big deal, I'm just curious if it was intended this way or not, that's all. Thank you and, Have a nice evening everyone, Alex
2011 Jun 14
1
Setting up RODBC or RMySQL package.
Hi all, I have installed RODBC package. But am not able to connect it for using MySQL. For accessing MySQL Db a connector is required.For that can i use the mysql db which is a part of WAMP server or use separate mysql db. I know there is a package called RMySQL. But i find it very difficult to install the RMySQL package under .Which is better one for accessing MySQL Database. Thanks Amrita