Displaying 2 results from an estimated 2 matches for "varbinary".
Did you mean:
abinary
2008 Jul 07
0
How to insert a string content into varbinary column in rails
There is a varbinary column in database table,in sql statement,we can
use '' convert(varbinary(10),''hello'') '' to convert string to
varbinary ,but in rails,how can I do that or there is a another way to
insert a string content into varbinary column.
--~--~---------~--~----~---------...
2014 May 04
0
Unknown user when sending internal email
I use MySQL to store my virtual users, domains and aliases.
My database is setup as follows:
|CREATE| |TABLE| |`dovecot_passwords` (|
|||`username` ||varchar||(100) ||NOT| |NULL||,|
|||`appname` ||varchar||(50) ||NOT| |NULL||,|
|||`||password||` varbinary(256) ||NOT| |NULL||,|
|||PRIMARY| |KEY| |(`username`,`appname`)|
|)
I then add a users:
|
|INSERT| |INTO| |dovecot_passwords (username, appname, ||password||)
||VALUES||( ||'test at domain.com'||, ||'desktop'||, MD5(||'password'||) );
My /usr/local/etc/dovecot/dovecot-sq...