Posts: 845
Threads: 3
Joined: Jun 2010
You can, of course, pass other parameters (or none at all) to the inline callback, just like with a normal callback.
Some YSI-functions are undefined here, are you sure you have the whole YSI package installed?
Posts: 1,113
Threads: 127
Joined: Jul 2008
Reputation:
0
I was sure... But after I re-downloaded it the errors went away.
Posts: 743
Threads: 49
Joined: May 2014
Reputation:
0
getting a 403 on download
Posts: 231
Threads: 1
Joined: Sep 2009
Reputation:
0
Is there anything close to mysql_fetch_row() or mysql_fetch_row_format() where I can get a result set that I can then parse to my own liking w/ sscanf rather than having to use ORMs or field-by-field retrievals via cache_get_row()? I understand the idea of making this plugin frameworkish though I preferred to work directly with raw SQL like the older plugin allowed.
Posts: 845
Threads: 3
Joined: Jun 2010
That string with the '|' delimiter is not "raw SQL", it was internally (in the plugin) generated in a for-loop with a 'cache_get_row()' like function. Thus it doesn't really make sense generating a string from all fields and then breaking it apart again through a parser (sscanf). 'cache_get_row()' is the only way (of course there are other ways, but they are also calling 'cache_get_row' internally) to retrieve data directly from the cached result set (because the "raw SQL" result is a 2D-string-array; the indices which are needed to access a field are the first two parameters in 'cache_get_row' and that field is directly stored into the third parameter passed to 'cache_get_row').
Posts: 119
Threads: 23
Joined: Dec 2009
Reputation:
0
Give me working link for R7 ubuntu plugin!
Posts: 329
Threads: 54
Joined: Sep 2012
Reputation:
0
Hey, I got a question.
How can I check whether the server is connected to the mysql server or not?
As far as I know, the function mysql_ping is not longer supported, is it?