12.04 を実行している Ubuntu マシンで mysql を使用してリモート データベースを作成しようとしています。
リモートログインが有効でパスワードのないルートユーザーがいます。サーバーを起動しました。
の出力
sudo netstat -tap | grep mysql
ショー
tcp 0 0 localhost:mysql *:* LISTEN 13246/mysqld
を使用してnwtopologyというデータベースを作成しました(前述のように、ルートにはまだパスワードがありません。)
create database nwtopology
grant all privileges on *.* to root@192.168.129.221
FLUSH PRIVILEGES;
Ubuntu 12.04 も実行しているクライアント マシンから、python スクリプトを使用して、sqlalchemy を使用してリモートの mysql データベースに接続します。
from pox.core import core
import pox.openflow.libopenflow_01 as of
import re
import datetime
import time
from sqlalchemy import create_engine, ForeignKey
from sqlalchemy import Column, Date, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, backref
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from sqlalchemy.sql.expression import exists
log = core.getLogger()
engine = create_engine('mysql://root@192.168.129.139/nwtopology', echo=False)
Base = declarative_base()
Session = sessionmaker(bind=engine)
session = Session()
class SourcetoPort(Base):
""""""
__tablename__ = 'source_to_port'
id = Column(Integer, primary_key=True)
port_no = Column(Integer)
src_address = Column(String,index=True)
#-----------------------------------------
def __init__(self, src_address,port_no):
""""""
self.src_address = src_address
self.port_no = port_no
#create tables
Base.metadata.create_all(engine)
最後の行
Base.metadata.create_all(engine)
エラーを返します
File "/usr/lib/python2.7/dist-packages/sqlalchemy/sql/compiler.py", line 1699, in visit_string
return self.visit_VARCHAR(type_)
File "/usr/lib/python2.7/dist-packages/sqlalchemy/dialects/mysql/base.py", line 1654, in visit_VARCHAR
self.dialect.name)
InvalidRequestError: VARCHAR requires a length on dialect mysql
これは何を意味するのでしょうか?mysqlでVARCHARの長さを設定するにはどうすればよいですか? 私は sqlalchemy と mysql を初めて使用します。