Re: [sqlite] sqlite and Mac App Store sandbox

2013-03-18 Thread Simon Slavin

On 18 Mar 2013, at 7:02pm, Marco Bambini  wrote:

> The main issue is that sqlite uses temporary files (next to the database 
> file) to store wal, shm or journal information.
> 
> Apple simply does not grant read/write privileges on non user specifically 
> selected files… so there is no way for sqlite to create temporary information.
> A solution could be to just set journal_mode to MEMORY but database got 
> corrupted in case of crash or power off and does not seem a very good 
> solution.
> Another solution could be to have the ability to specify a directory for all 
> these files… but there could be a lot of side effect.

That last option of yours is the one which seems likely to be most useful.  
Under iOS and sandboxed apps each user and each app does have its own place 
here where private files or folders can be safely stored.  The operating system 
does supply a call which returns the path to this folder.  So it seems like 
simple tests ("Am I running under MacOS ?  Then use this call to return the 
path for temp files.") are the way to go.  One way to find these useful 
directories is to use the '$' variables listed at the end of this page:



You can implement this yourself for an existing SQLite version using this call:



but it may be possible to build this behaviour into SQLite so if you do not 
call that function SQLite still automatically does The Right Thing under iOS 
and OS X.  That's something for the SQLite development team to pick over.

An alternative to what's written above is to create a convention that all 
SQLite-using sandboxed apps will share joint rights to an "App group container 
directory", which would be used for all SQLite temporary files.  This is done 
by specifying the app group and its directory in the settings for the sandboxed 
apps and the SQLite team would have to develop a standard for that, probably as 
a short page on the SQLite web server with a few lines of code and screenshots 
on it.  Some of what's needed is described here:



For those of you not familiar with Mac OS X having trouble understanding this 
/you are not stupid/.  These things are fiddly and annoying aspects of OS X and 
are described only in terms of other OS X terms.  Even experienced Mac users 
hate them.  So if you read that document and don't understand it, it just means 
you're not a genius.

Simon.
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] sqlite and Mac App Store sandbox

2013-03-18 Thread Petite Abeille

On Mar 18, 2013, at 8:02 PM, Marco Bambini  wrote:

> Anyone have another solution?

You may have better luck at  .

In the meantime:

http://developer.apple.com/library/mac/#documentation/Security/Conceptual/AppSandboxDesignGuide/MigratingALegacyApp/MigratingAnAppToASandbox.html
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] sqlite on mac os x 64 bits

2010-05-18 Thread Sylvain Pointeau
Hello,

many thanks for your answer,

I tried the command "file" on the current lib that I just built
(by ./configure CFLAGS="-DSQLITE_ENABLE_ICU `icu-config --cppflags`"
LDFLAGS="`icu-config --ldflags`")

it gives:
$ file /usr/local/lib/libsqlite3.dylib
/usr/local/lib/libsqlite3.dylib: Mach-O 64-bit dynamically linked shared
library x86_64

so it is 64 bits by default... this is what I mean, in my opinion.

Best regards,
Sylvain

On Tue, May 18, 2010 at 2:51 PM, Doug Currie  wrote:

>
> On May 18, 2010, at 4:14 AM, Sylvain Pointeau wrote:
> > but is it 64 bits? or do I have to add a special option?
>
> Last time I built a Universal Binary sqlite3 on OS X (March 2010 3.6.22) I
> had to
>
> CFLAGS='-arch i686 -arch x86_64' LDFLAGS='-arch i686 -arch x86_64'
> ./configure --disable-dependency-tracking
>
> Without the --disable-dependency-tracking configure gets confused;
> alternatively you can
> # edit Makefile removing -M options
> # basically turning the .c.o and .c.lo rules into
> # $(COMPILE) -c -o $@ $<
> # $(LTCOMPILE) -c -o $@ $<
>
>
> You can use the file command to reveal the library's compatible machine
> architectures, e.g.,
>
> ~ e$ file /usr/local/lib/libsqlite3.dylib
> /usr/local/lib/libsqlite3.dylib: Mach-O universal binary with 2
> architectures
> /usr/local/lib/libsqlite3.dylib (for architecture i386):Mach-O
> dynamically linked shared library i386
> /usr/local/lib/libsqlite3.dylib (for architecture x86_64):  Mach-O
> 64-bit dynamically linked shared library x86_64
> ~ e$ file /usr/local/lib/libsqlite3.a
> /usr/local/lib/libsqlite3.a: Mach-O universal binary with 2 architectures
> /usr/local/lib/libsqlite3.a (for architecture i386):current ar archive
> random library
> /usr/local/lib/libsqlite3.a (for architecture x86_64):  current ar archive
> random library
> ~ e$
>
>
> e
>
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] sqlite on mac os x 64 bits

2010-05-18 Thread Doug Currie

On May 18, 2010, at 4:14 AM, Sylvain Pointeau wrote:
> but is it 64 bits? or do I have to add a special option?

Last time I built a Universal Binary sqlite3 on OS X (March 2010 3.6.22) I had 
to 

CFLAGS='-arch i686 -arch x86_64' LDFLAGS='-arch i686 -arch x86_64' ./configure 
--disable-dependency-tracking

Without the --disable-dependency-tracking configure gets confused; 
alternatively you can
# edit Makefile removing -M options
# basically turning the .c.o and .c.lo rules into 
# $(COMPILE) -c -o $@ $<
# $(LTCOMPILE) -c -o $@ $<


You can use the file command to reveal the library's compatible machine 
architectures, e.g., 

~ e$ file /usr/local/lib/libsqlite3.dylib 
/usr/local/lib/libsqlite3.dylib: Mach-O universal binary with 2 architectures
/usr/local/lib/libsqlite3.dylib (for architecture i386):Mach-O 
dynamically linked shared library i386
/usr/local/lib/libsqlite3.dylib (for architecture x86_64):  Mach-O 64-bit 
dynamically linked shared library x86_64
~ e$ file /usr/local/lib/libsqlite3.a
/usr/local/lib/libsqlite3.a: Mach-O universal binary with 2 architectures
/usr/local/lib/libsqlite3.a (for architecture i386):current ar archive 
random library
/usr/local/lib/libsqlite3.a (for architecture x86_64):  current ar archive 
random library
~ e$ 


e

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite on Mac OS X with PowerPC?

2009-04-02 Thread P Kishor
On Thu, Apr 2, 2009 at 2:04 PM, Zobeid Zuma  wrote:
> I recently tried installing phpBB3 with SQLite on two Macs -- one
> Intel-based and the other PPC.
>
> The Intel Mac worked perfectly, but the PPC machine keeps stalling
> out.  It's turned into quite a puzzle for me.  So. . .    I recalled
> that SQLite is only available as a binary for Intel-based Macs, and
> wondered if there is a reason for that. . .?
>
> Does it, in fact, work on PPC?  Or should I just give that up as a bad
> idea?
>


SQLite works perfectly well on PPC Macs. I use it everyday. Just
compile it yourself.



-- 
Puneet Kishor http://www.punkish.org/
Nelson Institute for Environmental Studies http://www.nelson.wisc.edu/
Carbon Model http://carbonmodel.org/
Open Source Geospatial Foundation http://www.osgeo.org/
Sent from Madison, WI, United States
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


RE: [sqlite] SQLite on Mac

2007-07-20 Thread Ahmed Sulaiman
Thanks for the heads up. I have studied that and we have decided to go
with SQLite, it suits our needs :)

Cheers

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 20, 2007 11:50 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] SQLite on Mac

"Ahmed Sulaiman" <[EMAIL PROTECTED]> wrote:
> 
> We are now just making strategic decision as of which database engine
to
> choose that would give us better cross platform support. 
> 

Be sure to visit http://www.sqlite.org/whentouse.html to make
sure the SQLite is suited for whatever it is you are wanting
to do with your database.

--
D. Richard Hipp <[EMAIL PROTECTED]>



-
To unsubscribe, send email to [EMAIL PROTECTED]

-




-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-20 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

T wrote:
> As others have mentioned, yes, SQLite not only runs on a Mac, but it's
> already installed as of Mac OS X 10.4 "Tiger" and after. Apple uses it
> for indexing email in the Mail application, Core Data in XCode
> development, and media management in high end apps like Aperture.

You do have to be careful of one thing on the Mac (which has already
bitten several people).  If you run inside an app, or if your app loads
one of the many Apple components using SQLite then you will have
versioning issues.  For example if the Apple component is loaded first
then it loads the system SQLite which is an older version (3.0.8 IIRC)
and your attempts to use a new version such as a shared library you
linked against will be ignored.

You can work around this by using the amalgamation and
- -DSQLITE_API=static as noted in
http://www.sqlite.org/cvstrac/tktview?tn=2453

(The one unanswered question in that ticket is if there are two
different versions of SQLite in the same process, will the thread local
storage interfere with each other or is a different key used so they
co-exist).

Roger
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGoQAvmOOfHg372QQRArl4AJ9mnXK5WbtS3GpSkTCl6XvvKTjQrACffdY2
+ZcJygs3bLRIxm7MEKIN8Qo=
=j5X9
-END PGP SIGNATURE-

-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-20 Thread drh
"Ahmed Sulaiman" <[EMAIL PROTECTED]> wrote:
> 
> We are now just making strategic decision as of which database engine to
> choose that would give us better cross platform support. 
> 

Be sure to visit http://www.sqlite.org/whentouse.html to make
sure the SQLite is suited for whatever it is you are wanting
to do with your database.

--
D. Richard Hipp <[EMAIL PROTECTED]>


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



RE: [sqlite] SQLite on Mac

2007-07-20 Thread Ahmed Sulaiman
Thanks guys for the informative replies :)

We are now just making strategic decision as of which database engine to
choose that would give us better cross platform support. 

And with such a wonderful tech/community support, I believe SQLite is
the right answer :)

Cheers

-Original Message-
From: T [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 20, 2007 12:08 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] SQLite on Mac

Hi Ahmed,

> Does SQLite work on Mac, and if yes, is there any Mac enabled version
> that I could download?

As others have mentioned, yes, SQLite not only runs on a Mac, but it's  
already installed as of Mac OS X 10.4 "Tiger" and after. Apple uses it  
for indexing email in the Mail application, Core Data in XCode  
development, and media management in high end apps like Aperture.

If you have an earlier Mac OS X version, or want the very latest  
SQLite version, you can download it from the first link under the  
"Source Code" heading at:
http://www.sqlite.org/download.html
You'll need the Apple Developer Tools installed on your computer,  
which comes free with your computer or Mac OS X install discs, to  
compile and install it in about four steps.

To try it out, launch the Terminal program (already in your / 
Applications/Utilities folder) and type:

sqlite3 MyTestDatabase

then in the sqlite3 shell, type any sqlite commands, such as:

.help
.quit
create table MyTestTable( Name text, Age integer);

and so on.

There is also a range of GUI apps for the Mac for editing SQLite  
databases.

Reply here if you need more info.

Tom



-
To unsubscribe, send email to [EMAIL PROTECTED]

-




-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-20 Thread T

Hi Ahmed,


Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?


As others have mentioned, yes, SQLite not only runs on a Mac, but it's  
already installed as of Mac OS X 10.4 "Tiger" and after. Apple uses it  
for indexing email in the Mail application, Core Data in XCode  
development, and media management in high end apps like Aperture.


If you have an earlier Mac OS X version, or want the very latest  
SQLite version, you can download it from the first link under the  
"Source Code" heading at:

http://www.sqlite.org/download.html
You'll need the Apple Developer Tools installed on your computer,  
which comes free with your computer or Mac OS X install discs, to  
compile and install it in about four steps.


To try it out, launch the Terminal program (already in your / 
Applications/Utilities folder) and type:


sqlite3 MyTestDatabase

then in the sqlite3 shell, type any sqlite commands, such as:

.help
.quit
create table MyTestTable( Name text, Age integer);

and so on.

There is also a range of GUI apps for the Mac for editing SQLite  
databases.


Reply here if you need more info.

Tom


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-20 Thread Kasper Daniel Hansen

On Jul 19, 2007, at 8:45 AM, Ahmed Sulaiman wrote:


Hi all,

Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?


SQLite is part of MacOS X. Try typing sqlite3 at the command line...

Kasper



Cheers


-- 
---

To unsubscribe, send email to [EMAIL PROTECTED]
-- 
---





-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-20 Thread Peter Lau

On Jul 19, 2007, at 11:45 AM, Ahmed Sulaiman wrote:


Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?


SQLite is built-in on Tiger (10.4.x)... no installation is required.

pete

-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-19 Thread drh
"Ahmed Sulaiman" <[EMAIL PROTECTED]> wrote:
> Hi all,
> 
> Does SQLite work on Mac,

SQLite is built into the Mac.  Apple uses it for many
of the applications that come on the mac, such as the
email reader and safari.  

Just open up a terminal window and type "sqlite3" and
you will see.

SQLite also compiles out-of-the-box on mac.

--
D. Richard Hipp <[EMAIL PROTECTED]>


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-19 Thread Darren Duncan

At 11:45 AM -0400 7/19/07, Ahmed Sulaiman wrote:

Hi all,
Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?
Cheers


SQLite just works on Mac OS X.  If you have the Mac OS X Developer 
Tools intalled, you can just compile the normal SQLite source distro 
and it will work.  Otherwise, if you have Mac OS X 10.4 Tiger or 
later, a version of SQLite is also built-in as part of "Core Data". 
-- Darren Duncan


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-19 Thread Nigel Metheringham


On 19 Jul 2007, at 16:45, Ahmed Sulaiman wrote:

Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?


SQLite is used on the Mac natively - for example Mail.app uses a
SQLite DB to keep its message data straight.

Try the sqlite3 shell command.

Nigel.

--
[ Nigel Metheringham   [EMAIL PROTECTED] ]
[ - Comments in this message are my own and not ITO opinion/policy - ]



-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-19 Thread Alberto Simões

Hi

On 7/19/07, Ahmed Sulaiman <[EMAIL PROTECTED]> wrote:

Hi all,

Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?


While there are fink and darwin ports, I would suggest you to compile
it from scratch. It should work well. In my case I just needed to
deactivate TCL bindings.

Cheers
Alberto
--
Alberto Simões

-
To unsubscribe, send email to [EMAIL PROTECTED]
-



RE: [sqlite] SQLite on Mac

2007-07-19 Thread James Dennett

> -Original Message-
> From: Ahmed Sulaiman [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 19, 2007 8:46 AM
> To: sqlite-users@sqlite.org
> Subject: [sqlite] SQLite on Mac
> 
> Hi all,
> 
> Does SQLite work on Mac, and if yes, is there any Mac enabled version
> that I could download?


There's no need to download it; Apple includes a version, and uses it.

If you need a more recent version, you can build from source.

-- James


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite on Mac

2007-07-19 Thread P Kishor

On 7/19/07, Ahmed Sulaiman <[EMAIL PROTECTED]> wrote:

Hi all,

Does SQLite work on Mac, and if yes, is there any Mac enabled version
that I could download?




you must be new here, as they say on ./

Yes, SQLite works just fine on Mac. Just type the words Mac and SQLite
in Google.

--
Puneet Kishor http://punkish.eidesis.org/
Nelson Inst. for Env. Studies, UW-Madison http://www.nelson.wisc.edu/
Open Source Geospatial Foundation http://www.osgeo.org/education/
S Policy Fellow, National Academy of Sciences http://www.nas.edu/
-
collaborate, communicate, compete
=

-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] SQLite v3.1.4 - Mac OS X 10.3.8 compile issues

2005-03-11 Thread bbum
On Mar 11, 2005, at 8:09 AM, Eric Hochmeister wrote:
I just noticed that a new version of SQLite 3.1.4 was up, so I
downloaded it and can't seem to get it to compile.  I have
successfully been using previous versions of SQLite (3.1.3, 3.0.8,
etc.) and this is the first time I've received an issue compiling.
Does anyone have any ideas?  I'm using Mac OS X 10.3.8.
Brief note.
In the patch, search for F_FULLSYNC and replace it with F_FULLFSYNC.
http://www.sqlite.org/cvstrac/chngview?cn=2372


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-18 Thread Mauricio Piacentini

Yes... in OS X, everything that happens is written on in an app 
called Console. I write the author a while back too and he asked that 
I attempt to launch it again with Console running and then send him 
whatever errors/messages appear, but... strangely... I am still 
getting nothing in the Console... as I did then.
I answered to the original request at Sourceforge forums, so we can take 
it from there. Just wanted to point out that the MacOSX Console is not 
the same as the Terminal window, this is a common confusion for users 
coming from Unix/Linux. 
I answered this at the sqlitebrowser foruns, and there is a new binary 
for OSX 10.3 available as well (compiled with the latest Qt.) It works 
ok in the machines I tested, but then again the old one also worked. 
This new build however has some Qt fixes and official support for 
Panther, so you could try it and report if the problem continues. I 
don't know why it does not work on your machine, and you gave me no new 
information that we can use to find the source of the problem. The only 
possible clue for this come from the Console, really. Try monitoring the 
system.log. Another generic way to cause this problem in all OSX bundles 
is if for some reason the name of the executable inside the bundle does 
not match the one specified in the plist, for example because of an 
error in the decompression, or if you rename the executable.

It would also be better to move the discussion to the sqlitebrowser 
foruns. We would be able to benefit other users of the tool if we can 
find out why it does not work on your particular setup, and the problem 
is not related to the main SQLite library, and of little interest to 
other users of this list. Thanks!

Regards,
Mauricio


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-16 Thread Will Leshner
On Jan 16, 2004, at 7:31 AM, Wade Preston Shearer wrote:

Ah... very effective post. Any idea which log I should view?



Yes, I wanted to add that info, but I'm not sure myself. I want to say 
"system.log" but I'm not sure. When I think when I add debugging code 
to sqlite myself, that's where it ends up.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-16 Thread Wade Preston Shearer
I understand the difference between the two and use them both often, 
for their intended purposes. Yes, it was Console that I had open each 
time I was launching SQLite Browser and attempting to monitor for 
errors... and each time Console showed nothing. I have tried this on 
multiple computers running 10.3.

In Console, you may need to change which log you are looking at.
Ah... very effective post. Any idea which log I should view?



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-16 Thread Will Leshner
On Jan 16, 2004, at 7:15 AM, Wade Preston Shearer wrote:

I understand the difference between the two and use them both often, 
for their intended purposes. Yes, it was Console that I had open each 
time I was launching SQLite Browser and attempting to monitor for 
errors... and each time Console showed nothing. I have tried this on 
multiple computers running 10.3.

In Console, you may need to change which log you are looking at.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-16 Thread Wade Preston Shearer
Yes... in OS X, everything that happens is written on in an app 
called Console. I write the author a while back too and he asked that 
I attempt to launch it again with Console running and then send him 
whatever errors/messages appear, but... strangely... I am still 
getting nothing in the Console... as I did then.
I answered to the original request at Sourceforge forums, so we can 
take it from there. Just wanted to point out that the MacOSX Console 
is not the same as the Terminal window, this is a common confusion for 
users coming from Unix/Linux. The Console is a separate application 
that logs system level errors that would prevent an app from 
launching, like the lack of shared libraries, etc. Make sure you are 
really checking Console.app and not the terminal window.
I understand the difference between the two and use them both often, 
for their intended purposes. Yes, it was Console that I had open each 
time I was launching SQLite Browser and attempting to monitor for 
errors... and each time Console showed nothing. I have tried this on 
multiple computers running 10.3.

As someone wrote already, shared libraries are definately a weak spot 
under OSX. Some consider their implementation simply broke. I would 
not go as far, but there are certainly something not right about them 
specially if you are launching from the Finder. I believe the standard 
SQLite distribution does not compile as a shared library under OSX 
exactly because of this problems, can anyone confirm this?


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-16 Thread Mauricio Piacentini

Yes... in OS X, everything that happens is written on in an app called Console. I write the author a while back too and he asked that I attempt to launch it again with Console running and then send him whatever errors/messages appear, but... strangely... I am still getting nothing in the Console... as I did then.
I answered to the original request at Sourceforge forums, so we can take 
it from there. Just wanted to point out that the MacOSX Console is not 
the same as the Terminal window, this is a common confusion for users 
coming from Unix/Linux. The Console is a separate application that logs 
system level errors that would prevent an app from launching, like the 
lack of shared libraries, etc. Make sure you are really checking 
Console.app and not the terminal window.
As someone wrote already, shared libraries are definately a weak spot 
under OSX. Some consider their implementation simply broke. I would not 
go as far, but there are certainly something not right about them 
specially if you are launching from the Finder. I believe the standard 
SQLite distribution does not compile as a shared library under OSX 
exactly because of this problems, can anyone confirm this?

Regards,
Mauricio
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-14 Thread Mauricio Piacentini
[EMAIL PROTECTED] wrote:
...on Mac OS 10.3?


What error you get?
None. That's what's strange about it. It won't even launch. It starts in 
the dock but dies one second (literally) later.
I can run it on MacOSX 10.3.2. However the version of Qt used to compile 
the binaries does not support Panther officially, so the widgets do not 
look correct, specially buttons. There might be other subtle issues with 
Panther. I will try to find time to compile a newer version against the 
latest Qt, but please post a request directly to the sourceforge foruns 
if you have not done so.
If you are not using the binaries and have compiled from source you 
probably do not have Qt setup correctly for static compilation, or your 
environment is not setup correctly to use Qt shared libraries from the 
Finder. Since this list is dedicated to SQLite I would recommend 
checking the Qt forums, or posting to the sqlitebrowser message boards.

Regards,
Mauricio Piacentini
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-14 Thread Darren Duncan
At 12:27 PM -0700 1/14/04, Wade Preston Shearer wrote:
>Yes... in OS X, everything that happens is written on in an app called Console. I 
>write the author a while back too and he asked that I attempt to launch it again with 
>Console running and then send him whatever errors/messages appear, but... 
>strangely... I am still getting nothing in the Console... as I did then.

I use a Mac myself, though currently it is on 10.2.6.

To my knowledge, Console doesn't report *everything* that happens.  I believe it shows 
the text that is "printed to stderr" by applications.  Or at least it shows a lot of 
OS-detected problems.  For example, if the application you are launching dies because 
it can't find a shared library it needs, that will report in the console.  Or it did 
with a different app I tried.

As strange as it sounds, there is something else you should check, and that is whether 
any *other* applications also die on launch, especially ones that worked fine before.  
If you come to the point where anything you open tends to die immediately, that 
indicates an OS problem (I use this term broadly); usually saving changes in already 
open apps and then doing a normal restart will restore stability and let things launch 
then.  Whereas, if only one app fails but the others are fine, then the app would be 
the one with the problem.

-- Darren Duncan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-14 Thread Christian Kienle
> Yes... in OS X, everything that happens is written on in an
> app called Console. I write the author a while back too and he
> asked that I attempt to launch it again with Console running
> and then send him whatever errors/messages appear, but...
> strangely... I am still getting nothing in the Console... as I
> did then.

Then I suggest to send a detailed error description the QtForum 
guys. There are also Trolltech employees around there...

I dont know what to do now. sorry.

Greets

-- 
Linux is like a wigwam - no gates, no windows and an apache 
inside.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-14 Thread Christian Kienle
> None. That's what's strange about it. It won't even launch. It
> starts in the dock but dies one second (literally) later.

I am not really familar with Macstuff.
In Qt there is something like qDebug. QDebug sends Debugmessages 
to stderr. Perhaps you start sqlitebrowser from the commandline 
and give us the output.

The author of the programm is away I think. I wrote him a email 
for ages and got no answer...

Greets

-- 
Linux is like a wigwam - no gates, no windows and an apache 
inside.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-14 Thread Wade Preston Shearer
Has anyone successfully run SQLite Browser...

	http://sqlitebrowser.sourceforge.net

...on Mac OS 10.3?
What error you get?
None. That's what's strange about it. It won't even launch. It starts 
in the dock but dies one second (literally) later.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [sqlite] SQLite Browser (Mac OS 10.3)

2004-01-14 Thread Christian Kienle
> Has anyone successfully run SQLite Browser...
>
>   http://sqlitebrowser.sourceforge.net
>
>
> ...on Mac OS 10.3?

Hi, 

not but you could ask there:
www.qtforum.org.

SqliteBrowser is written with the Qt toolkit. So the people there 
will help you.

There are also a few guys from the macside.

What error you get?

Greets

-- 
Linux is like a wigwam - no gates, no windows and an apache 
inside.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]