cc3d3779530db44864e335f2cf2c479a03f70cae
[freeside.git] / htdocs / docs / man / FS / Record.html
1 <HTML>
2 <HEAD>
3 <TITLE>FS::Record - Database record objects</TITLE>
4 <LINK REV="made" HREF="mailto:perl@packages.debian.org">
5 </HEAD>
6
7 <BODY>
8
9 <A NAME="__index__"></A>
10 <!-- INDEX BEGIN -->
11
12 <UL>
13
14         <LI><A HREF="#name">NAME</A></LI>
15         <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
16         <LI><A HREF="#description">DESCRIPTION</A></LI>
17         <LI><A HREF="#constructors">CONSTRUCTORS</A></LI>
18         <LI><A HREF="#methods">METHODS</A></LI>
19         <LI><A HREF="#subroutines">SUBROUTINES</A></LI>
20         <LI><A HREF="#version">VERSION</A></LI>
21         <LI><A HREF="#bugs">BUGS</A></LI>
22         <LI><A HREF="#see also">SEE ALSO</A></LI>
23 </UL>
24 <!-- INDEX END -->
25
26 <HR>
27 <P>
28 <H1><A NAME="name">NAME</A></H1>
29 <P>FS::Record - Database record objects</P>
30 <P>
31 <HR>
32 <H1><A NAME="synopsis">SYNOPSIS</A></H1>
33 <PRE>
34     use FS::Record;
35     use FS::Record qw(dbh fields qsearch qsearchs dbdef);</PRE>
36 <PRE>
37     $record = new FS::Record 'table', \%hash;
38     $record = new FS::Record 'table', { 'column' =&gt; 'value', ... };</PRE>
39 <PRE>
40     $record  = qsearchs FS::Record 'table', \%hash;
41     $record  = qsearchs FS::Record 'table', { 'column' =&gt; 'value', ... };
42     @records = qsearch  FS::Record 'table', \%hash; 
43     @records = qsearch  FS::Record 'table', { 'column' =&gt; 'value', ... };</PRE>
44 <PRE>
45     $table = $record-&gt;table;
46     $dbdef_table = $record-&gt;dbdef_table;</PRE>
47 <PRE>
48     $value = $record-&gt;get('column');
49     $value = $record-&gt;getfield('column');
50     $value = $record-&gt;column;</PRE>
51 <PRE>
52     $record-&gt;set( 'column' =&gt; 'value' );
53     $record-&gt;setfield( 'column' =&gt; 'value' );
54     $record-&gt;column('value');</PRE>
55 <PRE>
56     %hash = $record-&gt;hash;</PRE>
57 <PRE>
58     $hashref = $record-&gt;hashref;</PRE>
59 <PRE>
60     $error = $record-&gt;insert;
61     #$error = $record-&gt;add; #depriciated</PRE>
62 <PRE>
63     $error = $record-&gt;delete;
64     #$error = $record-&gt;del; #depriciated</PRE>
65 <PRE>
66     $error = $new_record-&gt;replace($old_record);
67     #$error = $new_record-&gt;rep($old_record); #depriciated</PRE>
68 <PRE>
69     $value = $record-&gt;unique('column');</PRE>
70 <PRE>
71     $value = $record-&gt;ut_float('column');
72     $value = $record-&gt;ut_number('column');
73     $value = $record-&gt;ut_numbern('column');
74     $value = $record-&gt;ut_money('column');
75     $value = $record-&gt;ut_text('column');
76     $value = $record-&gt;ut_textn('column');
77     $value = $record-&gt;ut_alpha('column');
78     $value = $record-&gt;ut_alphan('column');
79     $value = $record-&gt;ut_phonen('column');
80     $value = $record-&gt;ut_anythingn('column');</PRE>
81 <PRE>
82     $dbdef = reload_dbdef;
83     $dbdef = reload_dbdef &quot;/non/standard/filename&quot;;
84     $dbdef = dbdef;</PRE>
85 <PRE>
86     $quoted_value = _quote($value,'table','field');</PRE>
87 <PRE>
88     #depriciated
89     $fields = hfields('table');
90     if ( $fields-&gt;{Field} ) { # etc.</PRE>
91 <PRE>
92     @fields = fields 'table'; #as a subroutine
93     @fields = $record-&gt;fields; #as a method call</PRE>
94 <P>
95 <HR>
96 <H1><A NAME="description">DESCRIPTION</A></H1>
97 <P>(Mostly) object-oriented interface to database records.  Records are currently
98 implemented on top of DBI.  FS::Record is intended as a base class for
99 table-specific classes to inherit from, i.e. FS::cust_main.</P>
100 <P>
101 <HR>
102 <H1><A NAME="constructors">CONSTRUCTORS</A></H1>
103 <DL>
104 <DT><STRONG><A NAME="item_new_%5B_TABLE%2C_%5D_HASHREF">new [ TABLE, ] HASHREF</A></STRONG><BR>
105 <DD>
106 Creates a new record.  It doesn't store it in the database, though.  See
107 <A HREF="#insert">insert</A> for that.
108 <P>Note that the object stores this hash reference, not a distinct copy of the
109 hash it points to.  You can ask the object for a copy with the <EM>hash</EM> 
110 method.</P>
111 <P>TABLE can only be omitted when a dervived class overrides the table method.</P>
112 <P></P>
113 <DT><STRONG><A NAME="item_qsearch_TABLE%2C_HASHREF%2C_SELECT%2C_EXTRA_SQL">qsearch TABLE, HASHREF, SELECT, EXTRA_SQL</A></STRONG><BR>
114 <DD>
115 Searches the database for all records matching (at least) the key/value pairs
116 in HASHREF.  Returns all the records found as `FS::TABLE' objects if that
117 module is loaded (i.e. via `use FS::cust_main;'), otherwise returns FS::Record
118 objects.
119 <P>###oops, argh, FS::Record::new only lets us create database fields.
120 #Normal behaviour if SELECT is not specified is `*', as in
121 #<CODE>SELECT * FROM table WHERE ...</CODE>.  However, there is an experimental new
122 #feature where you can specify SELECT - remember, the objects returned,
123 #although blessed into the appropriate `FS::TABLE' package, will only have the
124 #fields you specify.  This might have unwanted results if you then go calling
125 #regular FS::TABLE methods
126 #on it.</P>
127 <P></P>
128 <DT><STRONG><A NAME="item_qsearchs">qsearchs TABLE, HASHREF</A></STRONG><BR>
129 <DD>
130 Same as qsearch, except that if more than one record matches, it <STRONG>carp</STRONG>s but
131 returns the first.  If this happens, you either made a logic error in asking
132 for a single item, or your data is corrupted.
133 <P></P></DL>
134 <P>
135 <HR>
136 <H1><A NAME="methods">METHODS</A></H1>
137 <DL>
138 <DT><STRONG><A NAME="item_table">table</A></STRONG><BR>
139 <DD>
140 Returns the table name.
141 <P></P>
142 <DT><STRONG><A NAME="item_dbdef_table">dbdef_table</A></STRONG><BR>
143 <DD>
144 Returns the FS::dbdef_table object for the table.
145 <P></P>
146 <DT><STRONG><A NAME="item_get%2C_getfield_COLUMN">get, getfield COLUMN</A></STRONG><BR>
147 <DD>
148 Returns the value of the column/field/key COLUMN.
149 <P></P>
150 <DT><STRONG><A NAME="item_set%2C_setfield_COLUMN%2C_VALUE">set, setfield COLUMN, VALUE</A></STRONG><BR>
151 <DD>
152 Sets the value of the column/field/key COLUMN to VALUE.  Returns VALUE.
153 <P></P>
154 <DT><STRONG><A NAME="item_AUTLOADED_METHODS">AUTLOADED METHODS</A></STRONG><BR>
155 <DD>
156 $record-&gt;column is a synonym for $record-&gt;get('column');
157 <P>$record-&gt;<CODE>column('value')</CODE> is a synonym for $record-&gt;set('column','value');</P>
158 <P></P>
159 <DT><STRONG><A NAME="item_hash">hash</A></STRONG><BR>
160 <DD>
161 Returns a list of the column/value pairs, usually for assigning to a new hash.
162 <P>To make a distinct duplicate of an FS::Record object, you can do:</P>
163 <PRE>
164     $new = new FS::Record ( $old-&gt;table, { $old-&gt;hash } );</PRE>
165 <P></P>
166 <DT><STRONG><A NAME="item_hashref">hashref</A></STRONG><BR>
167 <DD>
168 Returns a reference to the column/value hash.
169 <P></P>
170 <DT><STRONG><A NAME="item_insert">insert</A></STRONG><BR>
171 <DD>
172 Inserts this record to the database.  If there is an error, returns the error,
173 otherwise returns false.
174 <P></P>
175 <DT><STRONG><A NAME="item_add">add</A></STRONG><BR>
176 <DD>
177 Depriciated (use insert instead).
178 <P></P>
179 <DT><STRONG><A NAME="item_delete">delete</A></STRONG><BR>
180 <DD>
181 Delete this record from the database.  If there is an error, returns the error,
182 otherwise returns false.
183 <P></P>
184 <DT><STRONG><A NAME="item_del">del</A></STRONG><BR>
185 <DD>
186 Depriciated (use delete instead).
187 <P></P>
188 <DT><STRONG><A NAME="item_replace_OLD_RECORD">replace OLD_RECORD</A></STRONG><BR>
189 <DD>
190 Replace the OLD_RECORD with this one in the database.  If there is an error,
191 returns the error, otherwise returns false.
192 <P></P>
193 <DT><STRONG><A NAME="item_rep">rep</A></STRONG><BR>
194 <DD>
195 Depriciated (use replace instead).
196 <P></P>
197 <DT><STRONG><A NAME="item_check">check</A></STRONG><BR>
198 <DD>
199 Not yet implemented, croaks.  Derived classes should provide a check method.
200 <P></P>
201 <DT><STRONG><A NAME="item_unique">unique COLUMN</A></STRONG><BR>
202 <DD>
203 Replaces COLUMN in record with a unique number.  Called by the <STRONG>add</STRONG> method
204 on primary keys and single-field unique columns (see <A HREF="../DBIx/DBSchema/Table.html">the DBIx::DBSchema::Table manpage</A>).
205 Returns the new value.
206 <P></P>
207 <DT><STRONG><A NAME="item_ut_float_COLUMN">ut_float COLUMN</A></STRONG><BR>
208 <DD>
209 Check/untaint floating point numeric data: 1.1, 1, 1.1e10, 1e10.  May not be
210 null.  If there is an error, returns the error, otherwise returns false.
211 <P></P>
212 <DT><STRONG><A NAME="item_ut_number_COLUMN">ut_number COLUMN</A></STRONG><BR>
213 <DD>
214 Check/untaint simple numeric data (whole numbers).  May not be null.  If there
215 is an error, returns the error, otherwise returns false.
216 <P></P>
217 <DT><STRONG><A NAME="item_ut_numbern_COLUMN">ut_numbern COLUMN</A></STRONG><BR>
218 <DD>
219 Check/untaint simple numeric data (whole numbers).  May be null.  If there is
220 an error, returns the error, otherwise returns false.
221 <P></P>
222 <DT><STRONG><A NAME="item_ut_money_COLUMN">ut_money COLUMN</A></STRONG><BR>
223 <DD>
224 Check/untaint monetary numbers.  May be negative.  Set to 0 if null.  If there
225 is an error, returns the error, otherwise returns false.
226 <P></P>
227 <DT><STRONG><A NAME="item_ut_text_COLUMN">ut_text COLUMN</A></STRONG><BR>
228 <DD>
229 Check/untaint text.  Alphanumerics, spaces, and the following punctuation
230 symbols are currently permitted: ! @ # $ % &amp; ( ) - + ; : ' `` , . ? /
231 May not be null.  If there is an error, returns the error, otherwise returns
232 false.
233 <P></P>
234 <DT><STRONG><A NAME="item_ut_textn_COLUMN">ut_textn COLUMN</A></STRONG><BR>
235 <DD>
236 Check/untaint text.  Alphanumerics, spaces, and the following punctuation
237 symbols are currently permitted: ! @ # $ % &amp; ( ) - + ; : ' `` , . ? /
238 May be null.  If there is an error, returns the error, otherwise returns false.
239 <P></P>
240 <DT><STRONG><A NAME="item_ut_alpha_COLUMN">ut_alpha COLUMN</A></STRONG><BR>
241 <DD>
242 Check/untaint alphanumeric strings (no spaces).  May not be null.  If there is
243 an error, returns the error, otherwise returns false.
244 <P></P>
245 <DT><STRONG>ut_alpha COLUMN</STRONG><BR>
246 <DD>
247 Check/untaint alphanumeric strings (no spaces).  May be null.  If there is an
248 error, returns the error, otherwise returns false.
249 <P></P>
250 <DT><STRONG><A NAME="item_ut_phonen_COLUMN_%5B_COUNTRY_%5D">ut_phonen COLUMN [ COUNTRY ]</A></STRONG><BR>
251 <DD>
252 Check/untaint phone numbers.  May be null.  If there is an error, returns
253 the error, otherwise returns false.
254 <P>Takes an optional two-letter ISO country code; without it or with unsupported
255 countries, ut_phonen simply calls ut_alphan.</P>
256 <P></P>
257 <DT><STRONG><A NAME="item_ut_ip_COLUMN">ut_ip COLUMN</A></STRONG><BR>
258 <DD>
259 Check/untaint ip addresses.  IPv4 only for now.
260 <P></P>
261 <DT><STRONG><A NAME="item_ut_ipn_COLUMN">ut_ipn COLUMN</A></STRONG><BR>
262 <DD>
263 Check/untaint ip addresses.  IPv4 only for now.  May be null.
264 <P></P>
265 <DT><STRONG><A NAME="item_ut_domain_COLUMN">ut_domain COLUMN</A></STRONG><BR>
266 <DD>
267 Check/untaint host and domain names.
268 <P></P>
269 <DT><STRONG><A NAME="item_ut_anything_COLUMN">ut_anything COLUMN</A></STRONG><BR>
270 <DD>
271 Untaints arbitrary data.  Be careful.
272 <P></P>
273 <DT><STRONG><A NAME="item_fields_%5B_TABLE_%5D">fields [ TABLE ]</A></STRONG><BR>
274 <DD>
275 This can be used as both a subroutine and a method call.  It returns a list
276 of the columns in this record's table, or an explicitly specified table.
277 (See <A HREF="../DBIx/DBSchema/Table.html">the DBIx::DBSchema::Table manpage</A>).
278 <P></P></DL>
279 <P>
280 <HR>
281 <H1><A NAME="subroutines">SUBROUTINES</A></H1>
282 <DL>
283 <DT><STRONG><A NAME="item_reload_dbdef"><CODE>reload_dbdef([FILENAME])</CODE></A></STRONG><BR>
284 <DD>
285 Load a database definition (see <A HREF="../DBIx/DBSchema.html">the DBIx::DBSchema manpage</A>), optionally from a
286 non-default filename.  This command is executed at startup unless
287 <EM>$FS::Record::setup_hack</EM> is true.  Returns a DBIx::DBSchema object.
288 <P></P>
289 <DT><STRONG><A NAME="item_dbdef">dbdef</A></STRONG><BR>
290 <DD>
291 Returns the current database definition.  See <A HREF="../FS/dbdef.html">the FS::dbdef manpage</A>.
292 <P></P>
293 <DT><STRONG><A NAME="item__quote_VALUE%2C_TABLE%2C_COLUMN">_quote VALUE, TABLE, COLUMN</A></STRONG><BR>
294 <DD>
295 This is an internal function used to construct SQL statements.  It returns
296 VALUE DBI-quoted (see <EM>DBI/``quote''</EM>) unless VALUE is a number and the column
297 type (see <A HREF="../FS/dbdef_column.html">the FS::dbdef_column manpage</A>) does not end in `char' or `binary'.
298 <P></P>
299 <DT><STRONG><A NAME="item_hfields">hfields TABLE</A></STRONG><BR>
300 <DD>
301 This is depriciated.  Don't use it.
302 <P>It returns a hash-type list with the fields of this record's table set true.</P>
303 <P></P></DL>
304 <P>
305 <HR>
306 <H1><A NAME="version">VERSION</A></H1>
307 <P>$Id: Record.html,v 1.3 2001-04-23 12:40:30 ivan Exp $</P>
308 <P>
309 <HR>
310 <H1><A NAME="bugs">BUGS</A></H1>
311 <P>This module should probably be renamed, since much of the functionality is
312 of general use.  It is not completely unlike Adapter::DBI (see below).</P>
313 <P>Exported qsearch and qsearchs should be depriciated in favor of method calls
314 (against an FS::Record object like the old search and searchs that qsearch
315 and qsearchs were on top of.)</P>
316 <P>The whole fields / hfields mess should be removed.</P>
317 <P>The various WHERE clauses should be subroutined.</P>
318 <P>table string should be depriciated in favor of FS::dbdef_table.</P>
319 <P>No doubt we could benefit from a Tied hash.  Documenting how exists / defined
320 true maps to the database (and WHERE clauses) would also help.</P>
321 <P>The ut_ methods should ask the dbdef for a default length.</P>
322 <P>ut_sqltype (like ut_varchar) should all be defined</P>
323 <P>A fallback check method should be provided which uses the dbdef.</P>
324 <P>The ut_money method assumes money has two decimal digits.</P>
325 <P>The Pg money kludge in the new method only strips `$'.</P>
326 <P>The ut_phonen method assumes US-style phone numbers.</P>
327 <P>The _quote function should probably use ut_float instead of a regex.</P>
328 <P>All the subroutines probably should be methods, here or elsewhere.</P>
329 <P>Probably should borrow/use some dbdef methods where appropriate (like sub
330 fields)</P>
331 <P>As of 1.14, DBI fetchall_hashref( {} ) doesn't set fetchrow_hashref NAME_lc,
332 or allow it to be set.  Working around it is ugly any way around - DBI should
333 be fixed.  (only affects RDBMS which return uppercase column names)</P>
334 <P>
335 <HR>
336 <H1><A NAME="see also">SEE ALSO</A></H1>
337 <P><A HREF="../DBIx/DBSchema.html">the DBIx::DBSchema manpage</A>, <A HREF=".././FS/UID.html">the FS::UID manpage</A>, <EM>DBI</EM></P>
338 <P>Adapter::DBI from Ch. 11 of Advanced Perl Programming by Sriram Srinivasan.</P>
339
340 </BODY>
341
342 </HTML>