File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff 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
123134Acceptable performance on Samsung Galaxy Tab 10.1
124135
125136You 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`
You can’t perform that action at this time.
0 commit comments