Search found 9854 matches

by Shalex
Thu 21 Aug 2008 11:21
Forum: dotConnect for Oracle
Topic: about create ado.net entity data model
Replies: 25
Views: 16110

We recommend you to download new OraDirect .NET version (4.75).
It supports Visual Studio 2008 Service Pack 1. You can download it from http://www.devart.com/oranet/download.html

If the problem persists, please let us know.
by Shalex
Thu 21 Aug 2008 08:57
Forum: dotConnect for PostgreSQL
Topic: .Net Framework 3.5 SP 1 Problem
Replies: 3
Views: 3618

PostgreSQLDirect .NET version 3.75 is released. It supports Visual Studio 2008 Service Pack 1. You can download it from http://www.devart.com/pgsqlnet/download.html

More about new release: http://www.devart.com/forums/viewtopic.php?t=12707
by Shalex
Thu 21 Aug 2008 08:52
Forum: dotConnect for MySQL
Topic: Error with Build 4.70.31, EDM, and VS 2008 SP1
Replies: 9
Views: 5201

MyDirect .NET version 4.85 is released. It supports Visual Studio 2008 Service Pack 1.
You can download it from http://www.devart.com/mysqlnet/download.html

More about new release: http://www.devart.com/forums/viewtopic.php?t=12706
by Shalex
Thu 21 Aug 2008 08:42
Forum: dotConnect for PostgreSQL
Topic: VS2008 SP1 + .NET 3.5 SP1
Replies: 2
Views: 3065

PostgreSQLDirect .NET version 3.75 is released. It supports Visual Studio 2008 Service Pack 1. You can download it from http://www.devart.com/pgsqlnet/download.html

More about new release: http://www.devart.com/forums/viewtopic.php?t=12707
by Shalex
Thu 21 Aug 2008 07:34
Forum: dotConnect for Oracle
Topic: Problem after upgrading to VS2008 SP1 RTM
Replies: 15
Views: 15298

OraDirect .NET version 4.75 is released. It supports Visual Studio 2008 Service Pack 1. You can download it from http://www.devart.com/oranet/download.html

More about new release: http://devart.com/forums/viewtopic.php?t=12705
by Shalex
Wed 20 Aug 2008 15:21
Forum: dotConnect for MySQL
Topic: Unable to establish SSH Connection
Replies: 13
Views: 7984

We advise you to find out excactly your SSH-server type (SSH-1 or SSH-2).
It depends on OS distribution version (if you have no particulars beyond that).
It can be only SSH-2 to use with MyDirect .NET.
It also can be network or Debian linux problems. In this case contact your administrator.
by Shalex
Wed 20 Aug 2008 14:18
Forum: dotConnect for Oracle
Topic: Preserve blanks in CHAR columns
Replies: 6
Views: 2992

This feature is not available in the current versions of OraDirect .NET.
It is recommended to process such returning results on your side by the code.
by Shalex
Tue 19 Aug 2008 12:46
Forum: dotConnect for MySQL
Topic: Unable to establish SSH Connection
Replies: 13
Views: 7984

Maybe you will find it useful: section "Using Secure Connections" in MyDirect .NET documentation
by Shalex
Tue 19 Aug 2008 12:28
Forum: dotConnect for MySQL
Topic: Unable to establish SSH Connection
Replies: 13
Views: 7984

Please, give us information about your SSH server type and its version. We will try to reproduce the error.
by Shalex
Tue 19 Aug 2008 08:01
Forum: dotConnect for Oracle
Topic: Network Error: a connection attempt failed
Replies: 3
Views: 2841

Our advice is to try this ping procedure. It creates simple connection using .NET functions. It is considered if the procedure doesn't work there are network problems or it's something wrong with your computer settings.

private void Ping(string host, int port) {

if (host.Length == 0 || port == 0) {
MessageBox.Show("Hostname or port was not specified", "CoreLab Ping demo");
return;
}

TcpClient client = new TcpClient();

try {
tbLog.Text += string.Format("---------\r\nConnecting to '{0}:{1}'...\r\n", host, port);

if (Regex.IsMatch(host + ".", @"^(([0-9]){1,3}\.){4}$")) {
IPAddress ipAddress = IPAddress.Parse(host);
client.Connect(ipAddress, port);
}
else
client.Connect(host, port);

MessageBox.Show("Ready to check connection.\r\nWait few seconds and press 'OK' to ping the selected host.", "CoreLab Ping demo");
Application.DoEvents();
tbLog.Text += "Sending ping...\r\n";
client.GetStream().WriteByte(255);
client.GetStream().Flush();
tbLog.Text += "Connected.\r\n";
}
catch (Exception ex) {
tbLog.Text += "Error occured:\r\n" + ex.Message + "\r\n";
}
finally {
if (client != null)
client.Close();
}

tbLog.SelectionStart = tbLog.Text.Length - 1;
tbLog.ScrollToCaret();
}

private void Form1_Load(object sender, EventArgs e) {

Ping("db", 1521);
}
by Shalex
Tue 19 Aug 2008 06:47
Forum: dotConnect for Oracle
Topic: Problem after upgrading to VS2008 SP1 RTM
Replies: 15
Views: 15298

The trial version of OraDirect will be released with Professional and Standart Edition simultaneously.
by Shalex
Tue 19 Aug 2008 06:15
Forum: dotConnect for MySQL
Topic: Getting a List of Field Names
Replies: 9
Views: 4582

One of the possible solutions to get columns list:

mysqlCommand.CommandText = "select .....";
List columns = new List();
using(MySqlDataReader reader = mysqlCommand.ExecuteReader(CommandBehavior.SchemaOnly)) {
DataTable table = reader.GetSchemaTable();
foreach(DataRow row in table.Rows)
columns.Add((string)row["ColumnName"]);
}
by Shalex
Mon 18 Aug 2008 15:45
Forum: dotConnect for Oracle
Topic: Problem after upgrading to VS2008 SP1 RTM
Replies: 15
Views: 15298

The problem is fixed. New, compatible with VS 2008 SP1 RTM builds will be available for tomorrow or the day after tomorrow.
by Shalex
Mon 18 Aug 2008 15:40
Forum: dotConnect for PostgreSQL
Topic: VS2008 SP1 + .NET 3.5 SP1
Replies: 2
Views: 3065

The problem is fixed. New, compatible with VS 2008 SP1 RTM builds will be available for tomorrow or the day after tomorrow.