Unix and Linux Discussions Tagged with mysql |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
24,075 |
Programming |
|
|
|
1 |
16,713 |
What is on Your Mind? |
|
|
|
45 |
58,308 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
19,129 |
Programming |
|
|
|
18 |
15,429 |
What is on Your Mind? |
|
|
|
14 |
16,261 |
What is on Your Mind? |
|
|
|
31 |
19,210 |
What is on Your Mind? |
|
|
|
3 |
9,639 |
What is on Your Mind? |
|
|
|
1 |
14,848 |
What is on Your Mind? |
|
|
|
1 |
7,796 |
UNIX for Beginners Questions & Answers |
|
|
|
27 |
84,604 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
19,665 |
Shell Programming and Scripting |
|
|
|
8 |
4,716 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
52,645 |
What is on Your Mind? |
|
|
|
12 |
2,999 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,589 |
Shell Programming and Scripting |
|
|
|
0 |
2,923 |
What is on Your Mind? |
|
|
|
12 |
4,001 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,044 |
What is on Your Mind? |
|
|
|
1 |
7,569 |
Web Development |
|
|
|
4 |
18,742 |
Web Development |
|
|
|
4 |
3,734 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,968 |
Programming |
|
|
|
2 |
3,271 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,586 |
What is on Your Mind? |
|
|
|
0 |
8,001 |
Cybersecurity |
|
|
|
0 |
11,571 |
Web Development |
|
|
|
2 |
2,211 |
Shell Programming and Scripting |
|
|
|
4 |
27,211 |
Web Development |
|
|
|
3 |
3,661 |
Shell Programming and Scripting |
|
|
|
1 |
4,969 |
Programming |
|
|
|
2 |
6,821 |
Linux |
|
|
|
2 |
4,104 |
Shell Programming and Scripting |
|
|
|
4 |
3,370 |
Shell Programming and Scripting |
|
|
|
3 |
2,990 |
Shell Programming and Scripting |
|
|
|
7 |
7,503 |
Shell Programming and Scripting |
|
|
|
4 |
3,440 |
Web Development |
|
|
|
2 |
3,302 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,709 |
Programming |
|
|
|
6 |
5,288 |
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)