Download Impel
Version 0.7
Read the APIIt’s simple
Download Impel ModulesTransparent Database Syncing
Read the FAQYes, it runs on the iPhone
- CritConstants
- Criteria
- Impel
- Impel.CritConstants
- Impel.Criteria
- Impel.Criterion
- Impel.inTouch
- Impel.ResultSet
- ImpelClass
- ImpelPeer
- ResultSet
- String
Built-In Namespace String
| Method Attributes | Method Name and Description |
|---|---|
| <static> |
String.prototype.lcfirst()
Make the first character of this String lower case
|
| <static> |
String.prototype.parsePeerColumn()
Parse a Peer::column string into its constituent parts
|
| <static> |
String.prototype.ucfirst()
Capitalize the first character of this String
|
Method Detail
<static>
String.prototype.lcfirst()
Make the first character of this String lower case
<static>
{Object}
String.prototype.parsePeerColumn()
Parse a Peer::column string into its constituent parts
"CardPeer::name".parsePeerColumn();
will return:
{ peer : a CardPeer object reference,
peer_name : "CardPeer",
column : "name",
table_column : "card.name",
getter : "getName",
setter : "setName",
orig : "CardPeer::name" }
- Returns:
- {Object} containing the name of the Peer class, associated table column, associated column, associated get method, associated set method, and the original string as well as a reference to the associated ImpelPeer object.
<static>
String.prototype.ucfirst()
Capitalize the first character of this String