Re: [Firebird-devel] Elevation required on Win7?
> > > Hello, > > I posted this one a while ago on the support list but couldn't get > any > > useful reply. Plus it seemed to me that the problem was only with Fb > > 2.0, but it is now doing it with Fb 2.1 as well. > > > > -- > > > > I am trying to run bin\fbserver.exe -a -n from a custom directory, > from > > the command prompt. The server runs. The directory contains suitable > > firebird.conf and security2.fdb. It works correctly under Windows XP, > > but on Win7 all connections are denied with a "cannot attach to > password > > database" error message. If I start fbserver with elevation, the > problem > > disappears. > > I should add that this is with Firebird 2.0.3 [also 2.1], and that I > am > > setting the FIREBIRD environment variable before running fbserver. > > > > Is it a requirement that fbserver is run with administrator > privileges > > in this scenario? That would be quite unfortunate in my case. > > > > Does anyone have any suggestion about where to look or which tests to > > perform? > > > > Thanks > > > -- > Nando Dessena > > To access the security2.fdb, the user must have write access to this file or to the folder. In the common places (e.g. "...\program files\...", "...\all users\application data\...", this right is NOT set for "normal" users by default. Good luck Chris -- Simplify data backup and recovery for your virtual environment with vRanger. Installation's a snap, and flexible recovery options mean your data is safe, secure and there when you need it. Data protection magic? Nope - It's vRanger. Get your free trial download today. http://p.sf.net/sfu/quest-sfdev2dev Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
Re: [Firebird-devel] Elevation required on Win7?
> >> > Is it a requirement that fbserver is run with administrator > >> privileges > >> > in this scenario? That would be quite unfortunate in my case. > >> > > > > > To access the security2.fdb, the user must have write access to this > > file or to the folder. In the common places (e.g. "...\program > > files\...", "...\all users\application data\...", this right is NOT > set > > for "normal" users by default. > > Google chrome autoupdate uses normal user data folder only to be > updated > ~\User\AppData\Local\ > There seems that apps have rw access without special rights > Google Chrome installs in the current "user" data folder, and the user has write access to his own folder. But in "...\all users\..." the write access is not set for users. Chris -- Simplify data backup and recovery for your virtual environment with vRanger. Installation's a snap, and flexible recovery options mean your data is safe, secure and there when you need it. Data protection magic? Nope - It's vRanger. Get your free trial download today. http://p.sf.net/sfu/quest-sfdev2dev Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
Re: [Firebird-devel] Fb3 and embedded
> From: Alex Peshkoff [mailto:peshk...@mail.ru] > Sent: Wednesday, June 06, 2012 3:00 PM > To: firebird-devel@lists.sourceforge.net > Subject: Re: [Firebird-devel] Fb3 and embedded > > On 06/06/12 14:43, Paul Reeves wrote: > > How does embedded work in FB3? > > > > I'm wondering because make_examples.bat fails unless fb3 is running. > > It would be nice to build the employee database using the newly > > built engine but I can't see how to do that at the moment. > > Paul, telling true I hardly understand why do you have such a problem. > On linux employee database is built using new engine in embedded mode, > and that works fine. Possible reason may be failure (no idea - why) > loading engine12 library by plugin manager. > On linux tools needed (isql, empbuild) are just linked against newly > built fbclient. It works with local databases in embedded mode by > default. > I had to modify the make_examples.bat for version 2.5 to build the example database. In the following section, fbembed.dll must be copied to fbclient.dll,and not the fbclient.dll to fbclient.dll as in repository stored. :BUILD_EMPBUILD @echo. @echo Building empbuild.fdb @copy /y %FB_OUTPUT_DIR%\bin\isql.exe %FB_GEN_DIR%\examples\ > nul @copy /y %FB_OUTPUT_DIR%\bin\fbembed.dll %FB_GEN_DIR%\examples\fbclient.dll > nul Regards Christian Waldmann -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
Re: [Firebird-devel] Fb3 and embedded
> -Original Message- > From: Alex Peshkoff [mailto:peshk...@mail.ru] > Sent: Wednesday, June 06, 2012 3:00 PM > To: firebird-devel@lists.sourceforge.net > Subject: Re: [Firebird-devel] Fb3 and embedded > > On 06/06/12 14:43, Paul Reeves wrote: > > How does embedded work in FB3? > > > > I'm wondering because make_examples.bat fails unless fb3 is running. > > It would be nice to build the employee database using the newly built > > engine but I can't see how to do that at the moment. > > Paul, telling true I hardly understand why do you have such a problem. > On linux employee database is built using new engine in embedded mode, > and that works fine. Possible reason may be failure (no idea - why) > loading engine12 library by plugin manager. > On linux tools needed (isql, empbuild) are just linked against newly > built fbclient. It works with local databases in embedded mode by > default. > I had to modify the make_examples.bat for version 2.5 to build the example database. In the following section, fbembed.dll must be copied,and not the fbclient as in repository stored. :BUILD_EMPBUILD @echo. @echo Building empbuild.fdb @copy /y %FB_OUTPUT_DIR%\bin\isql.exe %FB_GEN_DIR%\examples\ > nul @copy /y %FB_OUTPUT_DIR%\bin\fbembed.dll %FB_GEN_DIR%\examples\fbclient.dll > nul Regards Christian Waldmann -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
Re: [Firebird-devel] Fb3 and embedded
> From: Alex Peshkoff [mailto:peshk...@mail.ru] > Sent: Wednesday, June 06, 2012 3:00 PM > To: firebird-devel@lists.sourceforge.net > Subject: Re: [Firebird-devel] Fb3 and embedded > > On 06/06/12 14:43, Paul Reeves wrote: > > How does embedded work in FB3? > > > > I'm wondering because make_examples.bat fails unless fb3 is running. > > It would be nice to build the employee database using the newly > > built engine but I can't see how to do that at the moment. > > Paul, telling true I hardly understand why do you have such a problem. > On linux employee database is built using new engine in embedded mode, > and that works fine. Possible reason may be failure (no idea - why) > loading engine12 library by plugin manager. > On linux tools needed (isql, empbuild) are just linked against newly > built fbclient. It works with local databases in embedded mode by > default. > I had to modify the make_examples.bat for version 2.5 to build the example database. In the following section, fbembed.dll must be copied,and not the fbclient.dll as in repository stored. :BUILD_EMPBUILD @echo. @echo Building empbuild.fdb @copy /y %FB_OUTPUT_DIR%\bin\isql.exe %FB_GEN_DIR%\examples\ > nul @copy /y %FB_OUTPUT_DIR%\bin\fbembed.dll %FB_GEN_DIR%\examples\fbclient.dll > nul Regards Christian Waldmann -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
Re: [Firebird-devel] Fb3 and embedded
Hello Paul Here is the link to the issues I had reported to the version 2.5.1 make scripts: http://sourceforge.net/mailarchive/message.php?msg_id=27081999 At least the modification for make_examples.bat are not in the trunk. Maybe the same is missing in FB3 trunk Best regards Christian P.S.: Sorry for triple posting, sometimes I am too impatient... -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
[Firebird-devel] Firebird and Qt
Hello Firebird team I am using Firebird since many years, and since some time also in combination with the Qt Framework. Today I have encountered, that the QIBASE driver has only a minimalistic implementation. Has someone tried to upgrade/rework the QIBASE driver to support the Firebird 2.5 functions? The QIBASE plug in QT 4 uses the isc_ functions to access the fbclient. Is this still the suggested way? A stand alone implementation of Firebird embedded in the Qt development environment could boost the Firebird user base. Has someone already tried to do this? Happy greetings Chris -- Free Next-Gen Firewall Hardware Offer Buy your Sophos next-gen firewall before the end March 2013 and get the hardware for free! Learn more. http://p.sf.net/sfu/sophos-d2d-feb Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
Re: [Firebird-devel] Firebird and Qt
Hello Marius Hello Dimitry Thanks for the info. So I will look at Qt 5.0 and the current QIBASE driver, and take the effort to contribute to Qt. But I know only the Windows platform well. Happy greetings Chris -- Free Next-Gen Firewall Hardware Offer Buy your Sophos next-gen firewall before the end March 2013 and get the hardware for free! Learn more. http://p.sf.net/sfu/sophos-d2d-feb Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
[Firebird-devel] Feature request & discussion for V4 (same as for V3)
In Firebird CORE-659 (http://tracker.firebirdsql.org/browse/CORE-659) there is a collection of requests for spatial index, e.g. R*Tree or GiST, for GIS applications and other. Spatial indexes are also fine to find events in a interval of time. R* Tree at https://en.wikipedia.org/wiki/R*_tree GiST at http://gist.cs.berkeley.edu/ I think the support of spatial indexes can bring a lot of new users from SQLite (https://www.sqlite.org/rtree.html ) and PostgreSQL (http://www.postgresql.org/docs/8.1/static/indexes-types.html) to FireBird. Christian Waldmann -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel