search for: numfields

Displaying 7 results from an estimated 7 matches for "numfields".

Did you mean: num_fields
2004 Jun 23
0
UPDATE Patch for postgres enabled app_voicemail.c
...! * ! * added sql_append_mailboxes 6/23/2004 ! * ! * This function queries the database and loads the voicemail information ! * so the command show voicemail users works properly ! */ ! fprintf (stderr, " Loading voicemail information from database\n"); ! PGresult *PGSQLres; ! ! ! int numFields, i, k; ! char *fname; ! char query[240]; ! char optionsToPass[500] = ""; ! char options[160] = ""; ! char context[90] = ""; ! char mailbox[90] = ""; ! char password[90] = ""; ! char fullname[90] = ""; ! char email[90] = ""; ! cha...
2004 Jun 23
0
Patch for postgres enabled app_voicemail.c
...! * ! * added sql_append_mailboxes 6/23/2004 ! * ! * This function queries the database and loads the voicemail information ! * so the command show voicemail users works properly ! */ ! fprintf (stderr, " Loading voicemail information from database\n"); ! PGresult *PGSQLres; ! ! ! int numFields, i, k; ! char *fname; ! char query[240]; ! char optionsToPass[500] = ""; ! char options[160] = ""; ! char context[90] = ""; ! char mailbox[90] = ""; ! char password[90] = ""; ! char fullname[90] = ""; ! char email[90] = ""; ! cha...
2006 Mar 28
1
Asterisk to MySQL Data Lookup Warning Message?
...'m looking for and continue on through the dial sequence without an issue. I'm wondering if this warning message is something to be concerned about, can't find any info about it. warning message: Mar 28 15:55:40 WARNING[27481]: app_addon_sql_mysql.c:318 aMYSQL_fetch: ast_MYSQL_fetch: numFields=1 Should I be concerned? Does anyone know what it means? Thanks. JR I'm dialing extension 1001 extensions.conf [lookupmysql] exten => _X.,1,MYSQL(Connect connid 10.10.10.110 asteriskdb password table) exten => _X.,2,MYSQL(Query resultid ${connid} SELECT\ fullcontact\ from\ table_s...
2006 Jan 20
1
Calling MySQL 5 stored procedures from app_mysql
...-- Executing MYSQL("IAX2/100-3", "Query resultid 1 SELECT f_1('100')") in new stack -- Executing MYSQL("IAX2/100-3", "Fetch fetchid 2 vm_active") in new stack Jan 21 00:26:15 WARNING[31631]: app_addon_sql_mysql.c:318 aMYSQL_fetch: ast_MYSQL_fetch: numFields=1 -- Executing NoOp("IAX2/100-3", "Voicemail active: 1") in new stack -- Executing MYSQL("IAX2/100-3", "Clear 2") in new stack -- Executing MYSQL("IAX2/100-3", "Disconnect 1") in new stack -- Executing Hangup("IAX2/100...
2016 Jan 18
2
Segmentation Fault Asterisk 13.7.0-rc2 (libmysqlclient?)
...__PRETTY_FUNCTION__ = "custom_prepare" #4 0x00007f1e385b9783 in ast_odbc_prepare_and_execute (obj=0x1e588c8, prepare_cb=0x7f1e01e8f11f <custom_prepare>, data=0x7f1dc8a289b0) at res_odbc.c:640 res = 0 i = 0 attempt = 0 nativeerror = 0 numfields = 0 diagbytes = 0 state = "\v:\351\001\036\177\000\000t\001" diagnostic = "\340\030\006\244\035\177\000\000?\242\310\035\177\000\000\200\020\024\002\000\000\000\000,Z_9\036\177\000\000)\266\227V\000\000\000\000\320\003\000\000\000\000\000\000\240\210\242\310\0...
2005 Jan 04
0
Cisco 7200 One-Way Audio
..., "Query resultid 7 SELECT scriptname from mac2pin where userid=3213084003") in new stack -- Executing MYSQL("SIP/3213084003-cab8", "Fetch fetchid 8 AGIScript") in new stack Jan 4 17:49:50 WARNING[27531]: app_addon_sql_mysql.c:318 aMYSQL_fetch: ast_MYSQL_fetch: numFields=1 -- Executing GotoIf("SIP/3213084003-cab8", "0?5:7") in new stack -- Goto (default,1001,7) -- Executing AGI("SIP/3213084003-cab8", "HCC_TEST.agi|1001") in new stack -- Launched AGI Script /var/lib/asterisk/agi-bin/HCC_TEST.agi HCC_TEST.agi|...
2006 Jul 08
9
How to handle dynamically columned tables in rails
I want to build an application that lets me (the end user accessing a web page) design a simple list with columns and add records. E.g., if the end user says I want a table that has a list of songs, he can create a list (title, date, artist, label) and then make another list of, e.g., books on his bookshelf with the necessary columns (title, author, pub_date, shelf). The end user