Skip to content

Commit 8974ab9

Browse files
committed
Create README.md
1 parent 3875134 commit 8974ab9

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
SQLiteDemo
2+
===========
3+
4+
## What is this
5+
6+
If you want to lower the persistence level, for any reason, you can easily use the ```C``` based library ```libsqlite3``` in iOS.
7+
8+
But, if you want to use ```Swift``` instead of ```Objective-C```, you may find some difficulties in importing the library or especially when dealing with the ```C``` pointers and structures inside ```Swift```.
9+
10+
Below, you can see how "beautiful" is the translation of a simple function of this library:
11+
12+
```Swift
13+
func sqlite3_exec(_: COpaquePointer,
14+
sql: UnsafePointer<Int8>,
15+
callback: CFunctionPointer<((UnsafeMutablePointer<Void>, Int32, UnsafeMutablePointer<UnsafeMutablePointer<Int8>>, UnsafeMutablePointer<UnsafeMutablePointer<Int8>>) -> Int32)>,
16+
_: UnsafeMutablePointer<Void>,
17+
errmsg: UnsafeMutablePointer<UnsafeMutablePointer<Int8>>) -> Int32
18+
```
19+
20+
This project is not a wrapper or something like that, it's only a very simple working example on how to effectively use the basic methods of ```libsqlite3```, like how to:
21+
* Create and remove a database;
22+
* Create and remove tables;
23+
* Insert, Update and Remove elements in a table;
24+
* Select elements in a table;
25+
26+
27+
## Author
28+
29+
Lucas Eduardo, [email protected]

0 commit comments

Comments
 (0)