2

我在一个项目中使用 QtRuby + Mysql2,我正在尝试检索填充表单所需的所有数据。

首先,进行查询。然后,获取每个值并用于填充每个相关的小部件。

client = Mysql2::Client.new(:host => "localhost", :username => "root", :password => "", :database => "school")
res= client.query("SELECT * FROM activ WHERE act_name = '#{@cActiv.currentText()}' ")
res.each do |row|
            @tName.setText(row['act_name'].to_s)
            @tType.setText(row['act_type'].to_s)
            @strDate= row['act_date'].to_s
            @year=@strDate[0,4].to_i
            @month=@strDate[5,2].to_i
            @day=@strDate[7,2].to_i
            @date= Qt::Date.new(@year, @month, @day)
            @deDate.setDate(@date)
end

问题是尝试将日期设置为 DateEdit 时出现错误,即使创建 QDate 对象时没有错误。

有什么想法吗?

4

1 回答 1

0

问题不在显示的代码片段中。或者@year, @month, 或者@day没有从字符串转换中接收到有效值,或者@deDate不是Qt::DateEdit.

于 2016-01-09T19:08:06.073 回答