Displaying 3 results from an estimated 3 matches for "mysqlquery".
Did you mean:
mysql_query
2006 Sep 30
1
[SOLVED] quota with: postfixadmin, postfix, mysql & dovecot
...orage=' || quota_bytes AS
quota FROM users WHERE userid = '%u'
==========
nowhere is mentioned that this should also! be set:
===========
protocol imap {
mail_plugins = quota imap_quota
}
protocol pop3 {
mail_plugins = quota
}
===========
the second point I want to make is that the mysqlquery is incorrect as
|| does not do the job of joining the two strings. Secondly is dovecot
making use of kilobytes instead of bytes like postfix (and postfixadmin)
does.
For this I have found the following solution:
==========
user_query = SELECT maildir, 125 AS uid, 125 AS gid,\
CONCAT('dirsiz...
2006 Jan 02
3
MySql GUI on Linux
Hi there!
I''m justing starting out with the tutorials. What Linux GUIs for MySQL
are you people using?
alex
--
Alex Polite
1999 Feb 02
0
Suggestion
...uter. The best way to do that is to have
something like
mysql<-function (dbname, host = "zap", user = "nobody", password = "ok")
{
handle <<- .RC("mysqlconnect", c(host, user, password, dbname))
}
and
query<-function (cmd)
{
.RC("mysqlquery", handle, cmd)
}
In other words, my mysql (written in C) functions return a true R object.
The .RC function above simply calls the C funtion, passing R objects as
arguments and returns the R object created within the C function.
I think that R should give the ability to write C functions tha...