Ok, thank you, I will give it a try.
Jiri Cincura wrote:
On 4/24/08, Leo <[EMAIL PROTECTED]> wrote:
Jiri, in your blog
(http://blog.vyvojar.cz/jirka/archive/2008/03/24/entity-framework-and-firebird-part-2.aspx)
there is some code showing Firebird and linq... I know it is jus
Jiri, in your blog
(http://blog.vyvojar.cz/jirka/archive/2008/03/24/entity-framework-and-firebird-part-2.aspx)
there is some code showing Firebird and linq... I know it is just some
tests but can you direct me to some docs on wich I can learn how to do
it (where and how I map the tables, etc)?
If you are using firebird 2.0 or greater, you can use the *RETURNING
*clause:
/insert into my_table (trabajo, contratista, idgestion) values ('abc',
'abc', 1) RETURNING idtrabajo/
But you will have to use ExecuteScalar(), not ExecuteNonQuery to get the
returning value.
Hey, I have a web-service that accepts a string that contains a xml and
a string that contain some table name.
My XML file is like:
my name
99
another name
65
and the table has the fields "NAME" and "AGE".
I need to insert all the data on that
Hey, its me again, same problem, but with more (strange) information...
What I am doing, in a ASP.NET application:
create new dataset
drag a tableadapter
select my connectionstring
Advance with default values
When it asks me to enter a SQL statement, I insert into query builder a
simple SQL:
Carlos Guzmán Álvarez wrote:
Hello:
I'm using VS2005 + Firebird .net 2.1.0 Beta1,
it works ok when using
server explorer, etc but when I tell to VS to generate INSERT, UPDATE
and DELETE it gives me the folowing error:
"failed to find or load the registered .net framewo
I'm using VS2005 + Firebird .net 2.1.0 Beta1, it works ok when using
server explorer, etc but when I tell to VS to generate INSERT, UPDATE
and DELETE it gives me the folowing error:
"failed to find or load the registered .net framework data provider"
Am I missing something?
--