Skip to content

Commit 2d46d3d

Browse files
committed
initial commit
1 parent 3746267 commit 2d46d3d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,19 @@ Usage:
119119
});
120120
```
121121
122+
<b>Raw queries</b>
123+
```ActionScript
124+
var query:IQuery = session.query;
125+
query.text = "update test set str=:str where str=:id";
126+
query.parameters[":id"] = "inserted2";
127+
query.parameters[":str"] = "inserted3";
128+
query.run.then(function (operation:ISQLOperation):void{
129+
trace('ok');
130+
});
131+
```
132+
122133
123134
Acceptable performance on Samsung Galaxy Tab 10.1
124135
125136
You can add metadata validation to Intellij Idea using KnownMetaData.dtd file.
126-
Open Preferences > Schemas and DTDs > Add KnownMetaData.dtd with URI urn:Flex:Meta
137+
Open `Preferences > Schemas and DTDs > Add` KnownMetaData.dtd with URI `urn:Flex:Meta`

0 commit comments

Comments
 (0)