Displaying 4 results from an estimated 4 matches for "dbexec".
Did you mean:
bexec
2014 Jan 13
0
How to get ringing sound in outbound call in asterisk
...l_sendevent)
exten => _911X.,n(lbl_setcall),Set(IDGCALL=0)
exten => _911X.,n(lbl_sendevent),Gotoif($["${DBTYPE}"="SQL"]?lbl_sql:)
exten => _911X.,n,Gotoif($["${DBTYPE}"="MYSQL"]?lbl_mysql:lbl_record)
exten => _911X.,n(lbl_sql),UserEvent(${CHANNEL}$DBEXEC$EXEC
udsp_vlog_start_record
'${CHANNEL}'#'${IDGTERMINAL}'#'${EXTEN:1}'#'${FILENAME}'#'${UNIQUEID}'#'${CALLERID(num)}'#'O'#${VLOGSERVER}#'${HTTPPATH}${RECORDFILENAME}'#${IDGCALL}$)
exten => _911X.,n,Goto(lbl_record)
exten => _911X...
2002 Aug 09
2
RMySQL fetch defaults to N=500?
It appears that fetch() gets only the first 500 rows by default. I
don't see this in the documentation, but
timeinfo <- fetch(rs)
gets only 500 rows where
timeinfo <- fetch(rs,n=-1)
gets (correctly) 736 for the same query. Is this an undocumented
feature? I played with this data for an alarming amount of time
before I realized that I was missing a third of the data. I
2002 Oct 16
5
Database newbee problem...
Hi all,
This is a potentially very stupid question about MySQL <-> R
interaction, but I have not been able to solve it.
I'm just trying to connect R to my MySQL databse, and gets this:
> library(RMySQL)
Loading required package: methods
> m <- dbDriver("MySQL")
> con <- dbConnect(m,group="testdb")
Process R segmentation fault at Wed Oct 16 07:04:30
2001 Mar 19
3
generic database access methods
I've been putting together a package that defined generic methods for
database access. The packages is called "Rdbi." It borrows as much as
possible from existing database packages / proposals. I'd like to start
a discussion about the proposed interface. Here's what I've come up
with so far:
#
# Rdbi: connectionMethods.R
#
dbConnect <- function(dbObj, ...)