Unix and Linux Discussions Tagged with mysql |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
9,653 |
Programming |
|
|
|
1 |
7,714 |
What is on Your Mind? |
|
|
|
45 |
16,406 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
10,305 |
Programming |
|
|
|
18 |
4,957 |
What is on Your Mind? |
|
|
|
14 |
9,617 |
What is on Your Mind? |
|
|
|
31 |
10,054 |
What is on Your Mind? |
|
|
|
3 |
7,115 |
What is on Your Mind? |
|
|
|
1 |
6,348 |
What is on Your Mind? |
|
|
|
1 |
5,688 |
UNIX for Beginners Questions & Answers |
|
|
|
27 |
33,050 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
13,859 |
Shell Programming and Scripting |
|
|
|
8 |
2,681 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
21,940 |
What is on Your Mind? |
|
|
|
12 |
1,195 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,128 |
Shell Programming and Scripting |
|
|
|
0 |
1,401 |
What is on Your Mind? |
|
|
|
12 |
1,823 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,166 |
What is on Your Mind? |
|
|
|
1 |
3,617 |
Web Development |
|
|
|
4 |
4,797 |
Web Development |
|
|
|
4 |
2,066 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,464 |
Programming |
|
|
|
2 |
1,745 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
991 |
What is on Your Mind? |
|
|
|
0 |
3,665 |
Cybersecurity |
|
|
|
0 |
1,904 |
Web Development |
|
|
|
2 |
1,359 |
Shell Programming and Scripting |
|
|
|
4 |
20,825 |
Web Development |
|
|
|
3 |
2,621 |
Shell Programming and Scripting |
|
|
|
1 |
3,278 |
Programming |
|
|
|
2 |
5,390 |
Linux |
|
|
|
2 |
3,055 |
Shell Programming and Scripting |
|
|
|
4 |
1,967 |
Shell Programming and Scripting |
|
|
|
3 |
2,032 |
Shell Programming and Scripting |
|
|
|
7 |
5,109 |
Shell Programming and Scripting |
|
|
|
4 |
1,982 |
Web Development |
|
|
|
2 |
2,375 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
1,854 |
Programming |
|
|
|
6 |
3,734 |
Programming |
DBIx::SearchBuilder::Handle::mysql(3pm) User Contributed Perl Documentation DBIx::SearchBuilder::Handle::mysql(3pm)
NAME
DBIx::SearchBuilder::Handle::mysql - A mysql specific Handle object
SYNOPSIS
DESCRIPTION
This module provides a subclass of DBIx::SearchBuilder::Handle that compensates for some of the idiosyncrasies of MySQL.
METHODS
Insert
Takes a table name as the first argument and assumes that the rest of the arguments are an array of key-value pairs to be inserted.
If the insert succeeds, returns the id of the insert, otherwise, returns a Class::ReturnValue object with the error reported.
SimpleUpdateFromSelect
Customization of "SimpleUpdateFromSelect" in DBIx::SearchBuilder::Handle. Mysql doesn't support update with subqueries when those fetch
data from the table that is updated.
DatabaseVersion
Returns the mysql version, trimming off any -foo identifier
CaseSensitive
Returns undef, since mysql's searches are not case sensitive by default
SimpleDateTimeFunctions
Returns hash reference with specific date time functions of this database for "DateTimeFunction" in DBIx::SearchBuilder::Handle.
ConvertTimezoneFunction
Custom implementation of "ConvertTimezoneFunction" in DBIx::SearchBuilder::Handle.
Use the following query to get list of timezones:
SELECT Name FROM mysql.time_zone_name;
Read docs about keeping timezone data up to date:
http://dev.mysql.com/doc/refman/5.5/en/time-zone-upgrades.html
AUTHOR
Jesse Vincent, jesse@fsck.com
SEE ALSO
DBIx::SearchBuilder, DBIx::SearchBuilder::Handle
perl v5.14.2 2011-09-21 DBIx::SearchBuilder::Handle::mysql(3pm)