2022-04-06 16:21:08 +00:00
|
|
|
accessing
|
|
|
|
storeDB
|
2022-04-14 21:43:31 +00:00
|
|
|
| localDBFile localDBConnection |
|
2022-04-06 16:21:08 +00:00
|
|
|
localDBFile := FileLocator userData / 'Socialmetrica' / 'socialmetrica.sqlite'.
|
2022-04-14 21:43:31 +00:00
|
|
|
localDBConnection := ReStore connection: (SSWSQLite3Connection on: localDBFile fullName).
|
|
|
|
localDBConnection isConnected ifFalse: [ ^ localDBConnection connect ].
|
|
|
|
^ localDBConnection
|