Ok I searched and still have SQLite question

Just starting out? Need help? Post your questions and find answers here.
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

Ok I searched and still have SQLite question

Post by Omnius »

Does SQLite do "stored procedures" like MSSQL and Oracle?

:)
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

Oooo K...

Post by Omnius »

I'll take that as a no ;)

Are there -any- simple databases that do SP's? I can't think of any.

:)
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
Edwin Knoppert
Addict
Addict
Posts: 1073
Joined: Fri Apr 25, 2003 11:13 pm
Location: Netherlands
Contact:

Post by Edwin Knoppert »

I believe so + triggers.

See for info:
http://www.sqlite.org/faq.html
Edwin Knoppert
Addict
Addict
Posts: 1073
Joined: Fri Apr 25, 2003 11:13 pm
Location: Netherlands
Contact:

Post by Edwin Knoppert »

Just searched over there, no mentioning SP's..
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

Me too

Post by Omnius »

Yeah, I'm there right now. I'm not seeing SP support in SQLite.

You can distrubte MSDE with apps. I'm reading up on that now. Can you tell I've been writting lots of SPs over the years? I really can't do without them.

Thanks for the reply :)
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
Edwin Knoppert
Addict
Addict
Posts: 1073
Joined: Fri Apr 25, 2003 11:13 pm
Location: Netherlands
Contact:

Post by Edwin Knoppert »

Sorry, me DB stupid..
I'm busy with SQLite building me a dbms but that's fairly simple.
It's not the practical use side of SQLite using.

:)
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

It looks good

Post by Omnius »

I wish I wasn't so used to SPs so I could try it out. SQLite looks like a great app.

:)
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
Beach
Enthusiast
Enthusiast
Posts: 677
Joined: Mon Feb 02, 2004 3:16 am
Location: Beyond the sun...

Post by Beach »

MySQL version 5 can do Stored Procedures, however, I have not personally tried it and I do not know how it compares to MSSQL.

If you're interested:
http://dev.mysql.com/doc/mysql/en/store ... dures.html
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

Redistribute

Post by Omnius »

Wow, MySQL has evolved a lot since I last used it. Which was a few years ago. I wonder if you can redistribute it with an app?
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
Edwin Knoppert
Addict
Addict
Posts: 1073
Joined: Fri Apr 25, 2003 11:13 pm
Location: Netherlands
Contact:

Post by Edwin Knoppert »

A few people on PowerBASIC forum have managed to use the dll only.
However, i don't trust it, you'll have to test this without ever having the package installed onm that computer.

BTW, sqlite is still poor on multiuse afaik.
Hence the lite..
Maybe best for local single user stuff.
User avatar
blueb
Addict
Addict
Posts: 1111
Joined: Sat Apr 26, 2003 2:15 pm
Location: Cuernavaca, Mexico

Post by blueb »

I still believe that Firebird SQL is the best "totally" free DBMS system around (It does stored procedures). You can even get the source code, if you desire.

http://www.firebirdsql.org


--Bob
ColBoy
Enthusiast
Enthusiast
Posts: 143
Joined: Fri Feb 13, 2004 2:37 pm
Location: Ottawa, Canada
Contact:

Post by ColBoy »

blueb wrote:I still believe that Firebird SQL is the best "totally" free DBMS system around (It does stored procedures). You can even get the source code, if you desire.

http://www.firebirdsql.org

--Bob
I agree, I just recently completed a Delphi system using the embedded version of Firebird and it all went swimmingly. Now if only we had a wrapper for Embedded Firebird *hint hint* :-)

Colin
Colin
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

Post by Omnius »

blueb wrote:I still believe that Firebird SQL is the best "totally" free DBMS system around (It does stored procedures). You can even get the source code, if you desire.

http://www.firebirdsql.org


--Bob
Thank you Bob!!!!

FBSQL looks veeeeeerry interesting. I'm reading up now...

:)
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
Omnius
User
User
Posts: 40
Joined: Sun Jul 10, 2005 4:40 pm
Location: Mount Airy, MD
Contact:

Redistributing

Post by Omnius »

@Colboy

How many FBSQL files will I have to pack in with my application installer? Is it easy to redist?

:)
You want -real- game graphics?...
Matt Chavez is the man you contact. He's brilliant.
ColBoy
Enthusiast
Enthusiast
Posts: 143
Joined: Fri Feb 13, 2004 2:37 pm
Location: Ottawa, Canada
Contact:

Re: Redistributing

Post by ColBoy »

Omnius wrote:@Colboy

How many FBSQL files will I have to pack in with my application installer? Is it easy to redist?

:)
1 DLL (fbclient.dll) and 2 supporting files firebird.conf and firebird.msg and of course the database itself. Redistribution is simple, files just need to be copied. For Delphi I'm using the ZEOS wrapper. You need to make sure you download the embedded version of Firebird, which I think is currently 1.5.2, no version 2.0 alpha yet available.

Colin
Colin
Post Reply