English 中文(简体)
wpf - 有条件地从MS访问数据库中选择数据
原标题:wpf - select data from MS access database on condition

i 正在我的 wpf 应用程序中的访问数据库中访问表格。 但问题在于我的栏中含有 ID 的 ID 有起始空格 。 例如, 我的表包含 Estatation ID 列, 该列包含不同的 141A、 14B、 13521B 的 ID 。 但在这些 ID 的开头有一些空白空格 。 ( 141A、 14A、 14152B) 所以当我从 wpf 应用程序中的查询中通过参数时, 它返回空表 。 我的代码是空的 。

string query1 = "select * from Estimates where EstimateNo =  141A ";
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter();
da.SelectCommand = new OleDbCommand(query1, myDataConnection);
da.Fill(dt);

是否有方法可以让我在条款(即条款)中指明条件? 条款(即条款)开头可以包含任何数个白空格,但应该结束哪个字码?

现在怎么办?

最佳回答

您正在查找的函数是 LTRIM

string query1 = "select * from Estimates where LTRIM(EstimateNo) =  141A ";
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter();
da.SelectCommand = new OleDbCommand(query1, myDataConnection);
da.Fill(dt);
问题回答

use LTRIM function in sql query if you have space both at front and end then use

LTRIM(RTRIM(ColumnName))




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签