Search found 729 matches

by Alexey.mdr
Fri 27 Jun 2008 15:46
Forum: dotConnect for PostgreSQL
Topic: PostgreSQL autoincrement identity field and Entity Framework
Replies: 2
Views: 3126

Hello,

We are invesigating this possibility.
We will notify you on results in the nearest time.

Regards,
Alexey.
by Alexey.mdr
Fri 27 Jun 2008 15:08
Forum: dotConnect for MySQL
Topic: SSL problem
Replies: 2
Views: 2308

Hello,

Could you please specify the version and edition of MyDirect .NET?

Regards,
Alexey.
by Alexey.mdr
Fri 27 Jun 2008 12:19
Forum: dotConnect for Oracle
Topic: get The Return Value of stored procedure
Replies: 1
Views: 3249

Hello,

Please ckeck this code out

Code: Select all

Dim oc As New OracleCommand("STA_INSERT", OracleConnection1)

        oc.CommandType = System.Data.CommandType.StoredProcedure
        Dim op As New OracleParameter("retval", OracleDbType.Integer)
        op.Direction = ParameterDirection.ReturnValue
        oc.Parameters.Add(op)
        oc.Parameters.Add(New OracleParameter("in_pidstate", 1))
        oc.Parameters.Add(New OracleParameter("in_pidtyp", 1))
        oc.Parameters.Add(New OracleParameter("in_logstate", 1))
        oc.Parameters.Add(New OracleParameter("eqid", 1))
        OracleConnection1.Open()
        Dim ret As Integer
        Try
            oc.ExecuteNonQuery()
            ret = oc.Parameters(0).Value

        Catch ex As Exception
        Finally
            OracleConnection1.Close()
        End Try
Regards,
Alexey.
by Alexey.mdr
Fri 27 Jun 2008 11:13
Forum: dotConnect for MySQL
Topic: Lost connection to MySQL server during query
Replies: 7
Views: 4417

Hello,

Firstly, as pleb has already mentioned above, the exception message is quite important.
Secondly, when you use pooling try increasing the max pool size property, or just omit it (the default value is 100)

Code: Select all

Pooling=true;Max Pool Size=3;
Does it make sense?

P.S.: there is no need of max pool size property set when you do not use pooling.

Code: Select all

Pooling=false;Max Pool Size=3;
Regards,
Alexey.
by Alexey.mdr
Fri 27 Jun 2008 11:04
Forum: dotConnect for MySQL
Topic: Missing SP from EDM Wizard
Replies: 3
Views: 2598

Hello Rick,

did you send the project?
We have never received the application.
Could you send it to
mysqlnet*crlab*com?

Regards,
Alexey.
by Alexey.mdr
Fri 27 Jun 2008 10:56
Forum: dotConnect for Oracle
Topic: Contraint Issue
Replies: 8
Views: 4201

Hello,

Do you have this MySqlDataTable component on a Win Form?
If you do, could you please check that the Active check button in the component smart tag is not checked?
Please make a small test project to reproduce the problem and send it to mysqlnet*crlab*com.

Regards,
Alexey.
by Alexey.mdr
Thu 26 Jun 2008 15:56
Forum: dotConnect for Oracle
Topic: Entity Data Model Wizard not found Synonyms Objects
Replies: 7
Views: 4965

Hello,

We are investigating this problem.
If you'd be interested in terms, then it is about a month.
Our development team will try to support synonims in OraDirect .NET Entity Framework in the nearest build.
Not likely, but still possible, it may take more time.

Regards,
Alexey.
by Alexey.mdr
Thu 26 Jun 2008 15:49
Forum: dotConnect for MySQL
Topic: EDM MySQL Enums
Replies: 8
Views: 4104

Hello Pleb,

Your suggestion is reasonable and it's likely we will stick to the idea,
because it is the most natural way.
Apparently, we will implement ENUMs in the next build which is planned to be release in tree - four weeks.

Regards,
Alexey
by Alexey.mdr
Thu 26 Jun 2008 10:16
Forum: dotConnect for MySQL
Topic: MySqlDataSet Wizard Error
Replies: 3
Views: 2490

Hello,

Do you get the error regardless of the system account?
Is everything correct when you are logged in as administrator?
You can set administrative privileges for your Windows account in Control Panel -> User Accounts.

Regards,
Alexey.
by Alexey.mdr
Thu 26 Jun 2008 09:46
Forum: dotConnect for MySQL
Topic: EDM MySQL Enums
Replies: 8
Views: 4104

Hello,

we are investigating the possibility of implementing ENUM support in MyDirect .NET.
Please note, this may take some time.

Regards,
Alexey.
by Alexey.mdr
Wed 25 Jun 2008 08:23
Forum: dotConnect for Oracle
Topic: Search and Replace Oracle to Oradirect
Replies: 3
Views: 2755

Hello,

It's likely Migration Wizard will be helpful for you.
There are some posts, that you might want to see:
http://devart.com/forums/viewtopic.php? ... =migration
http://devart.com/forums/viewtopic.php? ... =migration
Hope this helps.

Regards,
Alexey.
by Alexey.mdr
Wed 25 Jun 2008 08:11
Forum: dotConnect for Oracle
Topic: SYS_REFCURSOR, Stored Procedures and the Entity Framework
Replies: 2
Views: 4542

Hello,

REF CURSOR type is not yet supported.
We are investigating this issue now.
Unfortunately, OraDirect .NET doesn't have any documentation for the using SP in EF now.
Generally, using SP in OraDirect .NET and pure EF for MS SQL server is the same. There are some links that might be helpful:
http://blogs.msdn.com/adonet/archive/20 ... pping.aspx

Regards,
Alexey.
by Alexey.mdr
Tue 24 Jun 2008 15:12
Forum: dotConnect for Oracle
Topic: Function Import missing from ObjectContext
Replies: 9
Views: 7356

Hello,

We investigated the problem.
Well, currently this feature (Function Import) is not properly implemented in EDM designer.
We are looking for a solution.
This may take some time.
Probably we will wait for the EF release.

Regards,
Alexey.
by Alexey.mdr
Tue 24 Jun 2008 06:57
Forum: dotConnect for MySQL
Topic: Possible bug with MySqlDataset.Tables["blah"].ChildRelations.Clear()
Replies: 7
Views: 3902

Hello,

Unfortunately we didn't receive the email.
Could you please resend it on alexeyman*devart*com and to mysqlnet*devart*com?

Regards,
Alexey.
by Alexey.mdr
Mon 23 Jun 2008 12:38
Forum: dotConnect for MySQL
Topic: EDM .net GUID
Replies: 18
Views: 8722

Hello,

As MySQL server doesn't support GUID type, MyDirect .NET will not provide a design-time support for it.
In the coming build you will be able to set the GUID type,
manually editing the edmx XML file.

Code: Select all


 
Regards,
Alexey.