Re: Is there anybody who used FireBird DB?

2016-03-31 Thread Suliman via Digitalmars-d-learn
On Thursday, 31 March 2016 at 08:53:46 UTC, Kagamin wrote: AFAIK when you request a string, whatever value is there gets converted to string. Or you can just add code to extract blobs, that would be less effort than writing everything from scratch. I have contact with it's developer. Hope for

Re: Is there anybody who used FireBird DB?

2016-03-31 Thread Kagamin via Digitalmars-d-learn
AFAIK when you request a string, whatever value is there gets converted to string. Or you can just add code to extract blobs, that would be less effort than writing everything from scratch.

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Suliman via Digitalmars-d-learn
On Wednesday, 30 March 2016 at 20:23:13 UTC, Kagamin wrote: You can also look here https://github.com/cruisercoder/dstddb/blob/master/src/std/database/odbc/database.d for an example of accessing ODBC from D (only strings are supported so far). Does ita mean that I would not able to select

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Kagamin via Digitalmars-d-learn
You can also look here https://github.com/cruisercoder/dstddb/blob/master/src/std/database/odbc/database.d for an example of accessing ODBC from D (only strings are supported so far).

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Kagamin via Digitalmars-d-learn
Latest version of what? ODBC bindings are in phobos: http://dlang.org/phobos/etc_c_odbc_sql.html

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Suliman via Digitalmars-d-learn
On Wednesday, 30 March 2016 at 18:31:35 UTC, Kagamin wrote: Also there's ODBC driver http://www.firebirdsql.org/en/devel-odbc-driver/ - you can use it, phobos has ODBC bindings. Where I can get the latest version? There is not any package on http://code.dlang.org/ and searching on github

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Kagamin via Digitalmars-d-learn
Also there's ODBC driver http://www.firebirdsql.org/en/devel-odbc-driver/ - you can use it, phobos has ODBC bindings.

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Kagamin via Digitalmars-d-learn
Mingw or windows platform SDK.

Re: Is there anybody who used FireBird DB?

2016-03-30 Thread Suliman via Digitalmars-d-learn
I have found next driver http://www.ibpp.org/#what_is_ibpp Here http://sourceforge.net/projects/ibpp is link to zip package that include two exe files and ibpp.lib ibpp.h it's look like it's ass that need for binding. I tried to run htod.exe but got error: D:\Project\2016>htod.exe ibpp.h

Re: Is there anybody who used FireBird DB?

2016-03-16 Thread Kagamin via Digitalmars-d-learn
On Tuesday, 15 March 2016 at 17:12:44 UTC, Suliman wrote: On Tuesday, 15 March 2016 at 15:01:09 UTC, Kagamin wrote: The same as you would do it in C. I do not know C :( Please explain me what i should to do with this binding C is mostly the same as low-level subset of D: primitive types,

Re: Is there anybody who used FireBird DB?

2016-03-15 Thread Ali Çehreli via Digitalmars-d-learn
On 03/15/2016 07:08 AM, Suliman wrote: For my regret I need way to work with FireBird. I have found only one driver for D https://github.com/jiorhub/fired Before I did not work with C-bindigs and D. So I can't understand how to use this files. Could anybody help and explain how to work with

Re: Is there anybody who used FireBird DB?

2016-03-15 Thread Suliman via Digitalmars-d-learn
On Tuesday, 15 March 2016 at 15:01:09 UTC, Kagamin wrote: The same as you would do it in C. I do not know C :( Please explain me what i should to do with this binding

Re: Is there anybody who used FireBird DB?

2016-03-15 Thread Kagamin via Digitalmars-d-learn
The same as you would do it in C.

Is there anybody who used FireBird DB?

2016-03-15 Thread Suliman via Digitalmars-d-learn
For my regret I need way to work with FireBird. I have found only one driver for D https://github.com/jiorhub/fired Before I did not work with C-bindigs and D. So I can't understand how to use this files. Could anybody help and explain how to work with it?