hi
i try to reverse string on access in sql query and C# like this:
SQL = "SELECT StrReverse(Des) from MyTbl";
dsView = new DataSet();
adp = new OleDbDataAdapter(SQL, Main.Conn);
adp.Fill(dsView, "MyTbl");
adp.Dispose();
dataGridView1.DataSource = dsView.Tables["MyTbl"].DefaultView;
and i get this error: Undefined function 'StrReverse' in expression.
but if i run this query on access its works excellent
what can be the problem ?
i try to reverse string on access in sql query and C# like this:
SQL = "SELECT StrReverse(Des) from MyTbl";
dsView = new DataSet();
adp = new OleDbDataAdapter(SQL, Main.Conn);
adp.Fill(dsView, "MyTbl");
adp.Dispose();
dataGridView1.DataSource = dsView.Tables["MyTbl"].DefaultView;
and i get this error: Undefined function 'StrReverse' in expression.
but if i run this query on access its works excellent
what can be the problem ?