delphi database without sql server [closed] - sql

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to do make small database apps with DELPHI.
Can I do them without using any SQL servers ?
I ask that because I want to avoid SQL server installing in the target machine
Does DELPHI has a built in engine that can replace SQL server ?

Make use of FireDAC and SQLite
http://docwiki.embarcadero.com/RADStudio/XE5/en/Connect_to_SQLite_database_(FireDAC)
SQLite works on any platform
https://www.sqlite.org/

For windows, you can use Firebird Embebded.
You only need copy some files in the application directory for use it.
Regards.

FireDAC has Local SQL feature. You can use in-memory database with TFDMemTables component which ships with newer versions of Delphi, or use TClientDataSet. Also google on embedded database with Delphi if you need a more powerful solution.
http://docwiki.embarcadero.com/RADStudio/Seattle/en/Local_SQL_%28FireDAC%29

You can use a TClientDataSet component

Related

Web based query tool(similiar to oracle- sqldeveloper) for oracle can be used as web application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Maybe this question has been asked before but as far as i've checked the entries i've found two possible entries which are very old, so would like to start a new post around the discussion ?
Found this post on Google Code, but project is discontinued to make it available on web:
http://code.google.com/p/oracle-gui/
https://code.google.com/archive/p/database-explorer/
I want to have your opinions and experience is there a any tool which can be deployable on server as a web application (i.e. nodejs, tomcat war application) that i can use similiar to sqldeveloper ?
SQLDeveloper for web is not fitting for me because i am not using Oracle on Cloud so i want a deployable tool which i can manage on my web application server.
If it is an Oracle database, it might already have Oracle Application Express (Apex) installed.
Apart from being a tool to develop applications (all you need is a browser), it also contains SQL Workshop which offers
object browser
data workshop
query builder
schema comparison tool
lets you execute SQL commands and scripts
etc.
So - have a look.
SQL Developer Web will be available for you on-prem later this year via ORDS.
You'll be able to run it for your own local databases, versions 11gR2 and higher.
For free.

Where's the download link of SSMS - ISO image? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for the ISO image of SQL Server Management Studio, I got many results related to SQL Server, but I'm confused which one of them to download.
Download SQL Server Management Studio Express version for free.
http://www.microsoft.com/en-us/download/details.aspx?id=29062
You can find the SQL Server Management Studio preview releases as well as previous standalone releases here:
https://msdn.microsoft.com/en-us/library/mt238290.aspx
You can visit Turbo.net and stream SSMS in a container, which means you don't even need to "install" it. Clever stuff. And at no cost.
It's highly likely that launching apps via containers will be the norm in a few years' time. It's great that Turbo already provides this service.

Any open source database options like MYSql which can work from ASp.net App folder [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am searching for a open source database option which may work from the ASP .net app folder. (I know its some sort of stand alone) .
Here I am trying to avoid the installation of a database server by utilizing the app folder option at least in the development machines.
I could only find two as of now, one is the access and the second is sql server from visual studio.
Any suggestions in this regard would be appreciated.
There are
SQLite
Firebird
H2 Database
Berkeley DB
Other open source engines that require a db server
MySQL
PostgreSQL
MongoDB
HSQLDB

Oracle server sandbox [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm doing a project for a database class (don't worry, it's not due tomorrow :P), and I need an Oracle server I can connect to. I'm trying to install it on my home box, but I'm slow with Linux. Really, I'd just like a sandbox server to connect to so I can run my homework assignments on them. Are those out there?
Why not try and use a pre-built Oracle VM ?
To my knowledge there aren't freely available Oracle instances you can access at your leisure -- there'd be patching and hacking attempts to deal with. I don't see any revenue to gain from it, so it's very unlikely.
However, Oracle provides a free version (Express, currently 10g). If you want an instance you can connect to at your whim, I'd suggest using a Virtual Machine (VM) software so you could create & run a VM, that would use a host OS of your choice, in order to install an Oracle Express instance that you could then connect to. That, or setup a separate box for hosting Oracle from.
You can get the free version of Oracle XE easily from eDelivery.Oracle.com
It runs on windows and is dirt-simple to install. Great platform for testing things out quickly.

Need in SQL parser on Delphi [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anybody know about good SQL parser with sources, written in Delphi? I need in parsing SQL commands (with all new features of Firebird 2.5) into object structure.
Read this article for Delphi SQL Parser, it uses IB as database but should not be very different between it and FB.
And there's an open source project called SQL Parser for Delphi but hasn't updated since 2005, but it may give you start up point.
2 other native Delphi SQL parsers:
Zeoslib seems to have an sql parser to parse Interbase, MySQL, Oracle, Postgres, SqLite and Sybase.
General SQL Parser (commercial)