gpt4 book ai didi

c# - SQL Anywhere 错误 -157 : Cannot convert '08/10/09' to a timestamp

转载 作者:行者123 更新时间:2023-12-05 07:42:38 24 4
gpt4 key购买 nike

这里也有人问过同样的问题:Getting Exception 'Cannot convert '08/10/09' to a timestamp' while connecting to Sybase Database with .Net

由于我是新用户,因此没有提供任何答案,我无法对该主题发表评论,所以我想再次提问。

我正在尝试构建一个 .NET 应用程序来与 Sybase/ASE/SQL Anywhere 数据库对话,使用在 SAP 此处找到的信息:http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.sdk_12.5.1.adonet/html/adonet/Connecting_adodotnet_development.htm

综上所述,这是我使用的代码:

private void MainWindow_Load(object sender, EventArgs e) {
using (AseConnection con = new AseConnection("Provider=ASEOLEDB.1; Data Source=localhost; Port=2638; Database={correct db name}; Uid={correct username}; Pwd={correct password}; Charset=iso_1;")) {
con.Open();
}
}

我在 con.Open() 上抛出异常:

“SQL Anywhere 错误 -157:无法将‘08/10/09’转换为时间戳”

堆栈轨迹如下:

   at Sybase.Data.AseClient1.AseConnection.Open()
at Sybase.Data.AseClient.AseConnection.Open()
at ReportGenerator.MainWindow.MainWindow_Load(Object sender, EventArgs e)
in C:\Projects\DiCello\ReportGenerator\ReportGenerator\MainWindow.cs:line 21
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

我看到了以下内容:https://archive.sap.com/discussions/thread/3646147 ,但是这不适用,因为我没有尝试运行查询,我还不能建立连接来运行建议的查询。日期 8/10/09 不是我在任何地方提交的日期。另请注意,此异常发生在 AseConnection.Open() 上,我没有提交格式错误的日期,数据库中也不存在格式错误的日期。

最佳答案

您似乎尝试将日期 (MMDDYYYY) 数据类型应用到 DateTime 或 Time 数据类型。这些本质上是不同的数据类型,包含不同的信息。

时间:

  • 营业时间 (hh)
  • 分钟(毫米)
  • 秒 (ss)

日期:

  • 月(月)
  • 天数 (DD)
  • 年 (YYYY)

关于c# - SQL Anywhere 错误 -157 : Cannot convert '08/10/09' to a timestamp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44311789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com